Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/asermax/claude-plugins --skill implement-delta명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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: