ソース情報
- リポジトリ
- asermax/claude-plugins
- ソースの最終更新活動
- 2026年4月4日 23:52
- 検出された 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 review-deltaコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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: