Generates step-by-step build plans from single-line goals, with independent context briefings per step, dependency graphs, parallel step detection, and adversarial review. For complex multi-PR tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:blueprintThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
将单行目标转变为任何编码智能体可以冷启动执行的分步构建计划。
将单行目标转变为任何编码智能体可以冷启动执行的分步构建计划。
不要用于可在单个 PR、少于 3 个工具调用中完成的任务,或当用户说"就去做"时。
Blueprint 运行 5 阶段管道:
plans/。每个步骤包括上下文简报、任务列表、验证命令和退出标准 — 因此新智能体可以在不读取先前步骤的情况下执行任何步骤。Blueprint 自动检测 git/gh 可用性。使用 git + GitHub CLI,它生成完整的分支/PR/CI 工作流计划。没有它们时,它切换到直接模式(就地编辑,无分支)。
/blueprint myapp "migrate database to PostgreSQL"
生成 plans/myapp-migrate-database-to-postgresql.md,包含以下步骤:
/blueprint chatbot "extract LLM providers into a plugin system"
生成一个尽可能包含并行步骤的计划(例如,在插件接口步骤完成后"实现 Anthropic 插件"和"实现 OpenAI 插件"并行运行)、模型层分配(接口设计步骤使用最强,实施使用默认),以及在每步之后验证的不变量(例如,"所有现有测试通过"、"核心中无提供商导入")。
.md 文件 — 无挂钩、无 shell 脚本、无可执行代码、无 package.json、无构建步骤。除了 Claude Code 的原生 Markdown 技能加载器之外,安装或调用时不会运行任何东西。此技能随 Everything Claude Code 一起提供。安装 ECC 时不需要单独安装。
如果您正在从 ECC 存储库签出工作,通过以下方式验证技能存在:
test -f skills/blueprint/SKILL.md
要稍后更新,请在更新之前审查 ECC 差异:
cd /path/to/everything-claude-code
git fetch origin main
git log --oneline HEAD..origin/main # 在更新之前审查新提交
git checkout <reviewed-full-sha> # 固定到特定的审查提交
如果您在完整 ECC 安装之外仅 vendored 此技能,请从 ECC 存储库中审查的文件复制到 ~/.claude/skills/blueprint/SKILL.md。Vendored 副本没有 git 远程,因此通过从审查的 ECC 提交重新复制文件来更新它们,而不是运行 git pull。
/blueprint 斜杠命令)灵感来自 antbotlab/blueprint — 上游项目和参考设计。
npx claudepluginhub aaione/everything-claude-code-zhGenerates step-by-step construction plans for multi-session, multi-agent engineering projects. Each step is self-contained so a fresh agent can execute it cold. Includes adversarial review, dependency graph, parallel step detection, and plan mutation.
Generates step-by-step plans for multi-session engineering projects with self-contained step contexts, dependency graphs, parallel detection, and adversarial review. Use for complex multi-PR tasks.
Generates step-by-step construction plans from one-line objectives for multi-session multi-agent coding projects. Steps are self-contained for execution by fresh agents without prior context. Invoke via /blueprint for tasks needing multiple PRs.