用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/asermax/claude-plugins --skill implement-delta命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | implement-delta |
| description | Implement a delta following its plan |
| argument-hint | [DELTA-ID] |
Implement a delta following its plan.
Delta ID: $ARGUMENTS (e.g., "DLT-001")
You must load the following skills and read the following files before proceeding.
katachi:framework-core - Workflow principleskatachi:working-on-delta - Per-feature workflowkatachi:research-docs - Documentation research for correct API usagedocs/planning/DELTAS.md - Delta definitionsdocs/delta-specs/$ARGUMENTS.md - What to build (requirements)docs/delta-designs/$ARGUMENTS.md - Why/how (design rationale)docs/delta-plans/$ARGUMENTS.md - Implementation plan with batchesdocs/architecture/README.md - Architecture decisions (ADRs)docs/design/README.md - Design patterns (DES)Verify all documentation exists:
Update status:
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py status set $ARGUMENTS "⧗ Implementation"
The implementation plan is organized into batches — scoped groups of steps with their own context and dependencies. Before implementing, understand how to work with them:
Each batch lists the documents, code files, and research pointers it needs. These are a starting point, not a contract:
katachi:research-docs skill guidance to verify current API signatures before writing code — do not rely on training data for library APIsdocs/delta-designs/$ARGUMENTS.md) for later reconciliation. This is critical — implementation knowledge must flow back to documentationUpdate each batch's status marker in the plan file (docs/delta-plans/$ARGUMENTS.md) as you progress:
⧗ Pending — not yet started⧗ Implementing — currently in progress✓ Done — all steps completed and verifiedIf a different approach is needed for valid reasons during implementation:
Read the implementation plan and analyze batch dependencies (Depends on: fields).
Used when batches form a dependency chain. The lead agent implements everything directly.
For each batch in dependency order:
⧗ Implementing in the plan filekatachi:research-docs skill guidance to verify current APIs. Investigate patterns. Write important findings to the design doc// See ADR-003 for why we use X instead of Y)✓ Done in the plan fileUse scratchpad /tmp/implement-$ARGUMENTS-state.md to track:
After all batches are done:
curl), invoke the CLI, or drive the UI, as fits the project — and confirm the observed behavior matches each acceptance criterion, not just that tests pass. Infer the run command from the project (package.json/Makefile/etc.) or ask if it's unclear. Stay within the local/dev environment: never touch production or other real shared services, and never run destructive or irreversible commands that could affect anything beyond the local setup — reading/writing local files and data and driving local/dev services is fine. Skip only when the change has no runtime surface to drive (a pure library or internal refactor), and say so.Show complete implementation to user:
Invite feedback: "What needs adjustment in this implementation?"
Apply user corrections or changes. Re-test after changes. When user rejects code changes: Update documents consistently. Repeat until user approves.
Update status:
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py status set $ARGUMENTS "✓ Implementation"
Present summary:
"Delta implementation complete for $ARGUMENTS.
[Brief explanation of what was implemented]
Files changed:
- [file]: [what changed]
- ..."
Offer to commit: "Ready to commit this implementation?"
Used when the plan contains independent batches (batches without cross-dependencies). The lead agent orchestrates agents rather than implementing directly.
Read all batches and their Depends on: fields. Identify:
Group into execution waves:
TeamCreate (name: dlt-<delta-id>-implementation)Depends on: fieldsSpawn agents in parallel (single message, multiple Agent tool calls) with:
subagent_type: "general-purpose"model: "sonnet" (unless user specifies otherwise)mode: "bypassPermissions"team_name: the team name from step 2run_in_background: trueEach agent's prompt must include:
docs/delta-plans/$ARGUMENTS.md) — specifically their batch section✓ Done in the plan file when completeteam-lead for any decisions not covered by the documentationAfter spawning agents:
TaskListOnce all batches are complete:
curl), invoke the CLI, or drive the UI, as fits the project — and confirm the observed behavior matches each acceptance criterion, not just that tests pass. Infer the run command from the project (package.json/Makefile/etc.) or ask if it's unclear. Stay within the local/dev environment: never touch production or other real shared services, and never run destructive or irreversible commands that could affect anything beyond the local setup — reading/writing local files and data and driving local/dev services is fine. Skip only when the change has no runtime surface to drive (a pure library or internal refactor), and say so.Then follow steps 3-5 from Sequential Execution (present to user, iterate, finalize).
Using ADRs and DES:
Referencing in Code:
// See [DECISION-ID]: [brief reason]Pattern Detection:
Batch-by-batch implementation:
Build something already designed, together with the user, then verify it and offer to commit. Use when a design is agreed and the work is ready to write, or when another skill needs the shared build discipline.
Load first when working with any zenku skill. Carries the vocabulary, the two rules, how to find the project's vault and conventions, and the habits for writing into it.
Lay out the current shape so the user can settle a new one — which modules exist, where the seams are, how data flows, and what earlier quests already decided. Use when the user wants to design a feature or a module, work out an interface, decide where a boundary belongs, or when another skill needs a shape agreed before code.
基于 SOC 职业分类