소스 정보
- 저장소
- asermax/claude-plugins
- 최근 소스 활동
- 2026년 3월 13일 11:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/asermax/claude-plugins --skill reconcile-delta명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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 직업 분류 기준
| 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: