add 技能验证
- 作者仓库星标 15
- 作者仓库 agentsmesh
Purpose
Add Global Mode Target
Use this skill when the task is to add global mode support for one existing target after you have a target-specific document that describes the native global file paths and behavior.
Read .agentsmesh/skills/add-global-mode-target/references/global-mode-target-checklist.md before editing code. Treat it as the minimum implementation and QA checklist.
When To Use
- The target already exists in
src/targets/<target>/ - You have a target doc with native global paths or global behavior
- The repository-wide global-mode foundation already exists (
init|install|generate|import|diff|lint|watch|check|merge|matrix --global) - The work is scoped to one target at a time
Do Not Use This Skill For
- Adding a brand-new target from scratch
- Defining the shared global-mode architecture for the first time
- Guessing a target's global behavior without a concrete doc or official source
Use add-agent-target for new targets. Use this skill only for the per-target global-mode pass.
Non-Negotiable Rules
MUST
- Start from the target doc and verify it against the live target implementation.
- Treat current code as the source of truth for project-mode behavior; preserve it unless the target doc requires a change.
- Write failing tests first for every new global-mode behavior.
- Keep the change target-scoped. Do not scatter new target-specific branches through shared code if descriptor metadata can carry the behavior.
- Add or update
descriptor.globaland keep project/global layout semantics explicit. - Verify link rewriting and import normalization for the target's global paths, not just generation paths.
- Test unsupported global features explicitly. If the target has no meaningful native global support, encode that and test the skip/warning behavior.
- Update docs if the supported-tools matrix, README, or global-mode docs change.
- Run the full verification stack before claiming completion.
MUST NOT
- Do not infer global paths from project-mode paths.
- Do not hardcode the target's global paths in shared cleanup or reference code when descriptor metadata can own them.
- Do not stop at “files generate”; global import, reference rewriting, and stale cleanup must also be checked when applicable.
- Do not silently mark a target as globally supported if only a subset of features work natively.
Workflow
Extract the contract from the doc.
- Record the target's native global root.
- Record which features are globally supported: rules, commands, agents, skills, MCP, hooks, ignore, permissions.
- Record root-instruction behavior, fallback paths, legacy paths, and any GUI-only/unsupported areas.
- Record whether import from global files is meaningful and lossless.
Cross-check the live target implementation.
- Read
src/targets/<target>/index.ts,constants.ts,generator.ts,importer.ts, andlinter.ts. - Identify the current project layout in
descriptor.project. - Identify where global behavior can reuse the same structure and where it cannot.
- Read
Write failing tests first.
- Add unit tests for target layout metadata (
descriptor.global, supported/unsupported features). - Add generation tests for global paths and root artifacts.
- Add import/reference-rewrite tests if the target can import from global files.
- Add stale-cleanup coverage if managed outputs differ from project mode.
- Add command/integration coverage that proves the existing
--globalCLI surface works for the new target where applicable.
- Add unit tests for target layout metadata (
Implement the target-global layout.
- Prefer target metadata over shared branching.
- Fill
descriptor.globalfor supported targets. - Keep managed outputs, root instruction paths, and path resolvers explicit.
- If only some features are global, encode that precisely and keep unsupported ones absent or skipped.
Wire shared behavior only where necessary.
- Update shared scope-aware path or import code only if the target truly needs it.
- Keep shared changes generic and descriptor-driven.
- If the target doc reveals a shared architectural gap, fix the gap once rather than adding one-off target branches.
- Do not re-architect CLI scope handling unless the target proves a real shared gap.
Update docs and matrix surfaces.
- Update
README.mdandwebsite/src/content/docs/reference/supported-tools.mdxif support levels or notes change. - Update
docs/plan-global-mode.mdif the target behavior clarifies the implementation contract.
- Update
Verify and QA.
- Run targeted tests during iteration.
- Run the full verification stack at the end.
- Apply the local
post-feature-qaskill before marking the work done.
Required Touchpoints
- Target descriptor and layout metadata:
src/targets/<target>/index.ts - Shared target lookup/path helpers:
src/targets/catalog/builtin-targets.tssrc/core/reference/map-targets.tssrc/core/reference/map.ts - If the target imports or rewrites links in global scope:
src/core/reference/rewriter.tssrc/core/reference/output-source-map.tssrc/core/reference/import-rewriter.tssrc/core/reference/import-map-builders.ts - If managed output ownership changes:
src/core/generate/stale-cleanup.ts - If the target needs command-surface proof:
tests/unit/cli/commands/*.test.tstests/integration/*global*.test.ts
Read the checklist reference for the full test and review matrix.
Required Verification
pnpm lintpnpm typecheckpnpm buildpnpm test
Add narrower unit/integration/e2e commands while iterating, but do not skip the full stack.
Completion Standard
The task is not done until all of the following are true:
- The target's global contract is derived from the provided doc and encoded in code, not left implicit.
descriptor.globalis either implemented correctly or omitted intentionally for unsupported targets.- Global generation paths are tested.
- Global import and reference rewriting are tested when the target supports them.
- Managed outputs and stale cleanup are correct for the target's global footprint.
- Docs and support matrix entries are current.
- Full verification passes.
- 流狐分类
- 文档
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @sampleXbro · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Add Global Mode Target Use this skill when the task is to add global mode support for one existing target after you have a target-specific document that describes the native global file paths and behavior. Read…
The target already exists in src/targets/<target>/ You have a target doc with native global paths or global behavior The repository-wide global-mode foundation already exists (init|install|generate|import|diff|lint|watch|check|merge|matrix --global)
Adding a brand-new target from scratch Defining the shared global-mode architecture for the first time Guessing a target's global behavior without a concrete doc or official source
Non-Negotiable Rules
Start from the target doc and verify it against the live target implementation. Treat current code as the source of truth for project-mode behavior; preserve it unless the target doc requires a change. Write failing tests first for every new global-mode…
Do not infer global paths from project-mode paths. Do not hardcode the target's global paths in shared cleanup or reference code when descriptor metadata can own them. Do not stop at “files generate”; global import, reference rewriting, and stale cleanup must…
## Purpose
# Add Global Mode Target
Use this skill when the task is to add global mode support for one existing target after you have a target-specific document that describes the native global file paths and behavior.
Read `.agentsmesh/skills/add-global-mode-target/references/global-mode-target-checklist.md` before editing code. Treat it as the minimum implementation and QA checklist.
## When To Use
- The target already exists in `src/targets/<target>/`
- You have a target doc with native global paths or global behavior
- The repository-wide global-mode foundation already exists (`init|install|generate|import|diff|lint|watch|check|merge|matrix --global`)
- The work is scoped to one target at a time
## Do Not Use This Skill For
- Adding a brand-new target from scratch
- Defining the shared global-mode architecture for the first time
- Guessing a target's global behavior without a concrete doc or official source
Use `add-agent-target` for new targets. Use this skill only for the per-target global-mode pass.
## Non-Negotiable Rules
### MUST
- Start from the target doc and verify it against the live target implementation.
- Treat current code as the source of truth for project-mode behavior; preserve it unless the target doc requires a change.
- Write failing tests first for every new global-mode behavior.
- Keep the change target-scoped. Do not scatter new target-specific branches through shared code if descriptor metadata can carry the behavior.
- Add or update `descriptor.global` and keep project/global layout semantics explicit.
- Verify link rewriting and import normalization for the target's global paths, not just generation paths.
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Purpose → When To Use → Do Not Use This Skill For → Non-Negotiable Rules → MUST → MUST NOT
要点 -> Read .agentsmesh/skills/add-global-mode-target/references/global-mode-target-checklist.md before editing code. · Use add-agent-target for new targets. · - Start from the target doc and verify it against the live target implementation. · - Do not infer global paths from project-mode paths. · 1. Extract the contract from the doc. · 2. Cross-check the live target implementation. · 3. Write failing tests first. · 4. Implement the target-global layout.
文件/命令 -> .agentsmesh/skills/add-global-mode-target/references/global-mode-target-checklist.md · src/targets/<target>/ · init|install|generate|import|diff|lint|watch|check|merge|matrix --global · add-agent-target · descriptor.global · src/targets/<target>/index.ts · constants.ts · generator.ts
内容 SHA-256 -> 59ceb9c4d5f5
方法与流程
适用与边界
原文中的明确线索
.agentsmesh/skills/add-global-mode-target/references/global-mode-target-checklist.md、src/targets/<target>/、init|install|generate|import|diff|lint|watch|check|merge|matrix --global、add-agent-target、descriptor.global、src/targets/<target>/index.ts、constants.ts、generator.ts