用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/asermax/claude-plugins --skill reconcile-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.
基于 SOC 职业分类
正在显示 SKILL.md
| name | reconcile-delta |
| description | Reconcile delta implementation into feature documentation |
| argument-hint | [DELTA-ID] |
Reconcile a completed delta implementation into the long-lived feature documentation.
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 workflow${CLAUDE_PLUGIN_ROOT}/skills/framework-core/references/technical-diagrams.md - ASCII diagram guidance${CLAUDE_PLUGIN_ROOT}/skills/framework-core/references/code-examples.md - Code snippet guidancedocs/delta-specs/$ARGUMENTS.md - Delta specification with detected impactsdocs/delta-designs/$ARGUMENTS.md - Delta design with detected impactsdocs/delta-plans/$ARGUMENTS.md - Implementation plandocs/feature-specs/ - Long-lived feature specifications to updatedocs/feature-designs/ - Long-lived feature designs to updateVerify delta is implemented:
/katachi:implement-delta $ARGUMENTS firstRead all delta working documents:
docs/delta-specs/$ARGUMENTS.mddocs/delta-designs/$ARGUMENTS.mddocs/delta-plans/$ARGUMENTS.mdExtract Detected Impacts sections from spec and design. Build complete picture of what was implemented and what features are affected.
Extract UI documentation (if present):
Review actual implementation:
For each feature path identified in detected impacts:
For each affected feature:
Determine update type:
Surgical change principle:
Handle missing feature documentation:
Draft complete updates:
For feature specs:
For feature designs:
For domain READMEs:
Handle UI documentation (if present in delta):
For feature specs with breadboards:
breadboarding.md reference guideFor feature designs with wireframes:
wireframing.md reference guideIf delta has NO UI documentation (technical delta):
Handle technical diagrams (if present in delta):
For feature designs with technical diagrams (state, flow, sequence, ERD):
technical-diagrams.md reference guideHandle code examples (if present in delta):
For feature designs with code snippets:
code-examples.md reference guideCreate new feature docs if needed:
Analyze delta-design's "Key Decisions" section and implementation patterns for ADR/DES candidates.
Extract decisions from delta-design:
Detect implementation patterns:
Check existing decisions:
Prepare candidates:
Dispatch the decision-reviewer agent to validate decision candidates:
Task(
subagent_type="katachi:decision-reviewer",
prompt=f"""
Review these decision candidates from delta reconciliation.
## Delta Spec
{delta_spec}
## Delta Design (with Key Decisions)
{delta_design}
## Implementation Summary
{implementation_summary}
## ADR Candidates
{adr_candidates}
## DES Candidates
{des_candidates}
## Proposed Updates to Existing Decisions
{decision_updates}
## Existing ADR Index
{adr_index}
## Existing DES Index
{des_index}
"""
)
Apply validation feedback:
Dispatch reviewer agents to validate the proposed updates. Run both in parallel:
Validate spec updates:
Task(
subagent_type="katachi:spec-reviewer",
prompt=f"""
Review these feature spec updates from delta reconciliation.
## Delta Description (from DELTAS.md)
{delta_description}
## Delta Spec
{delta_spec}
## Proposed Feature Spec Updates
{proposed_spec_updates}
Verify that updates:
- Accurately reflect what was implemented
- Maintain consistency with existing feature specs
- Follow spec documentation patterns (user stories, behaviors, acceptance criteria)
- Preserve coherent narrative
"""
)
Validate design updates:
Task(
subagent_type="katachi:design-reviewer",
prompt=f"""
Review these feature design updates from delta reconciliation.
## Delta Spec
{delta_spec}
## Delta Design
{delta_design}
## Proposed Feature Design Updates
{proposed_design_updates}
## ADR Index Summary
{adr_index}
## DES Index Summary
{des_index}
Verify that updates:
- Accurately reflect what was implemented
- Maintain design coherence and pattern alignment
- Follow design documentation patterns (components, data flow, decisions)
- Properly reference relevant ADRs and DES patterns
- Preserve coherent narrative
"""
)
Apply validation feedback from both reviewers to improve proposed updates.
Show complete update proposal to user:
"Reconciliation plan for DLT-XXX:
## Feature Specs to Update:
- [domain/capability.md]: [summary of changes]
- ...
## Feature Designs to Update:
- [domain/capability.md]: [summary of changes]
- ...
## New Feature Docs to Create:
- [domain/README.md]: [description]
- [domain/capability.md]: [description]
- ...
## Decision Candidates
### ADR Candidates
[For each candidate:]
- **[Decision Name]**
- Summary: [What was decided]
- Justification: [Why this warrants an ADR - hard to reverse / project-wide]
- Proposed ID: ADR-NNN
[Context, choice, alternatives, consequences from delta-design]
### DES Candidates
[For each candidate:]
- **[Pattern Name]**
- Found in: [file paths where pattern appears]
- Summary: [What pattern was used]
- Justification: [Why this warrants a DES - repeated / cross-cutting]
- Proposed ID: DES-NNN
[Pattern description with do/don't examples from implementation]
### Updates to Existing Decisions
[For each update:]
- **[ADR/DES-NNN]: [Title]**
- What changes: [description]
- Why: [What this delta revealed]
[Show detailed diffs or full updated content for each file]
Which decision candidates should we create? Which updates should we apply?
What else needs adjustment in this reconciliation?"
Invite feedback and discuss any questions.
Apply user corrections or changes to proposed updates. Re-present updated sections if significant changes. Repeat until user approves the reconciliation.
Once approved, update all affected documentation:
Feature documentation:
Decision documents (if any approved):
For each approved ADR candidate:
For each approved DES candidate:
For each approved update to existing decision:
Update delta status:
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py status set $ARGUMENTS "✓ Reconciled"
Present summary:
"Reconciliation complete for DLT-XXX:
Updated feature specs:
- [list of files]
Updated feature designs:
- [list of files]
Created new feature docs:
- [list of files]
Created decision documents:
- [list of ADRs/DES created]
Updated decision documents:
- [list of ADRs/DES updated]
Feature documentation is now current with implementation."
A decision warrants ADR when ALL of these apply:
A pattern warrants DES when ALL of these apply:
| Signal | Suggests |
|---|---|
| Decision mentions technology/framework/library | ADR |
| Decision has significant negative consequences | ADR |
| Same code structure appears 2+ times | DES |
| Decision solves logging, error handling, config | DES |
Not every decision needs promotion:
Reference decision-types.md for the full decision tree.
This is a validate-first process: