用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/asermax/claude-plugins --skill review-delta命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-delta |
| description | Review a delta's implemented code against specs, designs, and decisions |
| argument-hint | [DELTA-ID] |
Review a delta's implementation for spec compliance, design alignment, and code quality.
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 workflowdocs/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 delta is implemented:
/katachi:implement-delta $ARGUMENTS firstRead all relevant documentation:
Gather the implemented code:
git diff origin/main...HEAD
git diff
git diff --staged
Repeat until the code-reviewer returns PASS:
Task(
subagent_type="katachi:code-reviewer",
prompt=f"""
Review this implementation.
## Delta Spec
{spec_content}
## Delta Design
{design_content}
## Implementation Plan
{plan_content}
## Implemented Code
{code_diff_or_files}
## Relevant ADR/DES Documents
{adr_des_content}
"""
)
If assessment is NEEDS_WORK, automatically address ALL issues identified:
Do NOT ask user about fixes — fix everything autonomously.
After fixing:
If issues were fixed, loop back to step 2a with the updated code. Continue until the code-reviewer returns PASS.
Once the code-reviewer returns PASS:
Show the validated implementation:
Invite feedback: "What needs adjustment in this implementation?"
Apply user corrections or changes. Re-run review loop if changes are significant. Repeat until user approves.
Present summary:
"Implementation review complete for $ARGUMENTS.
[Brief summary of review findings and fixes applied]
Files reviewed:
- [file]: [status and notes]
- ...
Issues found and fixed: [count]
Review iterations: [count]"
This is a review-and-fix loop: