用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/asermax/claude-plugins --skill deltas命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | deltas |
| description | Extract deltas from the project vision |
| disable-model-invocation | true |
Extract deltas from VISION.md into DELTAS.md.
You must load the following skills and read the following files before proceeding.
katachi:framework-core - Workflow principlesdocs/planning/VISION.md - Project vision to extract deltas fromdocs/planning/DELTAS.md - Current delta inventory (if exists)Follow the collaborative workflow principles from the framework-core skill.
Deltas-specific guidance:
Use a scratchpad - Track state in /tmp/deltas-<project-name>-state.md (where <project-name> is the basename of the current working directory):
Extract all at once - Review entire vision and extract all deltas in one pass.
Detect gaps proactively - Challenge completeness:
If docs/planning/DELTAS.md exists:
If no deltas exist: proceed with initial extraction
Review the vision document thoroughly. Extract all deltas in a single pass:
Consider all aspects:
Each delta represents a bounded piece of work:
references/DELTAS-template.md from framework-core)For each delta, document source traceability (which vision section).
Dispatch the delta-validator agent to review the raw delta list.
Task(
subagent_type="katachi:delta-validator",
prompt=f"""
Validate this raw delta list.
## Vision Document
{vision_content}
## Raw Delta List
{raw_deltas}
"""
)
Review agent findings with user.
Based on agent validation:
Assign sequential IDs (DLT-001, DLT-002, etc.) to all deltas.
For each delta:
Dispatch the delta-validator agent to review the completed inventory.
Task(
subagent_type="katachi:delta-validator",
prompt=f"""
Validate this complete delta inventory.
## Delta Inventory
{deltas_md_content}
"""
)
Review agent findings with user.
Ask: "Should we iterate based on this feedback, or is the inventory complete?"
If gaps to address → refine deltas
If complete → finalize and write to docs/planning/DELTAS.md
After the delta inventory is finalized, analyze all deltas for dependencies.
For each delta, analyze:
Apply dependency priority principles:
Present all proposed **Depends on**: values with reasoning for each delta.
User reviews proposed dependencies. Discuss and adjust based on user knowledge.
Surface hidden dependencies with gap detection questions:
Dispatch a general-purpose subagent to validate the dependency graph.
Include user's explicit decisions made during analysis.
Request critique on:
If cycles found, work with user to resolve:
Review findings with user. Iterate if needed.
Write dependencies as **Depends on**: DLT-XXX, DLT-YYY (or None) in each delta's entry in docs/planning/DELTAS.md.
This is a collaborative process:
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 职业分类