Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
affaan-m avatar

Blueprint

  • 5.5k installs
  • 238k repo stars
  • Updated August 5, 2026
  • affaan-m/everything-claude-code

blueprint is an Everything Claude Code skill that converts a one-line goal into cold-executable multi-step build plans with adversarial review gates.

About

The blueprint skill from Everything Claude Code turns a one-line goal into a step-by-step build plan any coding agent can execute cold-start without prior session context. Use it to split large features into multiple PRs with clear dependency order, plan cross-session refactors or migrations, coordinate parallel sub-agent work, or avoid rework from context loss between sessions. Skip it for single-PR tasks, work finishable in under three tool calls, or when the user says just do it. The five-stage pipeline runs Research with git and gh preflight, Design splitting goals into 3-12 PR-sized steps with dependency edges, Draft writing self-contained markdown plans in plans/ with verification commands, Review via adversarial sub-agent against anti-pattern catalog, and Register persisting the plan. When git and GitHub CLI are available, Blueprint generates full branch, PR, and CI workflow plans; otherwise it switches to direct mode. Example: /blueprint myapp migrate database to PostgreSQL writes plans/myapp-migrate-database-to-postgresql.md with five migration steps. Ships with ECC; no separate install if ECC is present.

  • Five-stage pipeline: Research, Design, Draft, Review, and Register.
  • Splits goals into 3-12 PR-sized steps with dependency edges and parallel detection.
  • Self-contained plans/ markdown files executable cold without reading prior steps.
  • Adversarial review gate with anti-pattern catalog before finalizing plans.
  • Auto-detects git and gh for full branch/PR/CI workflow or direct mode fallback.

Blueprint by the numbers

  • 5,467 all-time installs (skills.sh)
  • +224 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #107 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

blueprint capabilities & compatibility

Capabilities
one line goal to pr sized step decomposition · dependency graph and parallel step detection · self contained plans/ markdown with exit criteri · adversarial review against anti pattern catalog · git and gh aware branch/pr/ci workflow planning
Works with
github
Use cases
planning · project management · orchestration
Runs
Runs locally
Pricing
Free
From the docs

What blueprint says it does

1行の目的を、任意のコーディングエージェントがコールドで実行できるステップバイステップ構築計画に変換します。
SKILL.md
ブループリントは5段階パイプラインを実行します:
SKILL.md
ブループリントはgit/gh可用性を自動的に検出します。git + GitHub CLIを使用すると、完全なブランチ/PR/CIワークフロー計画を生成します。それらなしでは、ダイレクトモードに切り替わります。
SKILL.md
npx skills add https://github.com/affaan-m/everything-claude-code --skill blueprint

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5.5k
repo stars238k
Security audit3 / 3 scanners passed
Last updatedAugust 5, 2026
Repositoryaffaan-m/everything-claude-code

How do I plan a complex multi-PR or multi-session engineering task so a new agent can execute any step without prior context?

Turn a one-line goal into cold-start step-by-step build plans with dependency graphs for multi-PR, multi-session agent engineering work.

Who is it for?

Large features, migrations, or refactors spanning multiple PRs, sessions, or parallel sub-agents where context loss causes rework.

Skip if: Skip for single-PR tasks, work under three tool calls, or when the user wants immediate execution without planning.

When should I use this skill?

User requests a plan, blueprint, or roadmap for complex multi-PR work or describes tasks needing multiple sessions.

What you get

A self-contained markdown plan in plans/ with PR-sized steps, verification commands, exit criteria, and parallelism summary.

  • plans/ markdown build plan file
  • memory index update
  • step count and parallelism summary

By the numbers

  • Skips tasks completable in fewer than 3 tool calls or a single PR

Files

SKILL.mdMarkdownGitHub ↗

ブループリント — 構築計画ジェネレータ

1行の目的を、任意のコーディングエージェントがコールドで実行できるステップバイステップ構築計画に変換します。

使用時期

  • 大きな機能をクリアな依存関係の順序で複数のPRに分割
  • 複数のセッションにまたがるリファクタリングまたは移行を計画
  • サブエージェント間の平行作業流を調整
  • セッション間のコンテキスト損失がやり直しを引き起こす可能性のあるタスク

しないでください単一のPR、3未満のツール呼び出しで完成可能なタスク、またはユーザーが「単にやってくれ」と言う場合。

動作方法

ブループリントは5段階パイプラインを実行します:

1. 研究 — 飛行前チェック(git、gh認証、リモート、デフォルトブランチ)、次にプロジェクト構造、既存計画、メモリファイルを読んでコンテキストを収集。 2. 設計 — 目的を1 PRサイズのステップに分割(典型的には3~12)。依存関係エッジ、平行/順序付け、モデル層、ロールバック戦略を割り当て。 3. ドラフト — 自己完結型マークダウン計画ファイルをplans/に書く。すべてのステップにはコンテキストブリーフ、タスクリスト、検証コマンド、出口基準を含む — 新しいエージェントが前のステップを読まずに任意のステップを実行できます。 4. レビュー — 敵対的なレビューを最強モデルサブエージェント(例:Opus)にチェックリストとアンチパターンカタログに対して委任。最終化する前にすべての重大な知見を修正。 5. 登録 — 計画を保存、メモリインデックスを更新、ステップ数と並列性概要をユーザーに提示。

ブループリントはgit/gh可用性を自動的に検出します。git + GitHub CLIを使用すると、完全なブランチ/PR/CIワークフロー計画を生成します。それらなしでは、ダイレクトモードに切り替わります。

基本的な使用方法

/blueprint myapp "PostgreSQLにデータベースを移行"

次のようなステップを含むplans/myapp-migrate-database-to-postgresql.mdを生成します:

  • ステップ1:PostgreSQLドライバーと接続構成を追加
  • ステップ2:各テーブルの移行スクリプトを作成
  • ステップ3:新しいドライバーを使用するようにリポジトリレイヤーを更新
  • ステップ4:PostgreSQLに対する統合テストを追加
  • ステップ5:古いデータベースコードと構成を削除

インストール

このスキルはEverything Claude Codeに付属します。ECCがインストールされている場合、別のインストールは必要ありません。

完全なECCインストール

ECC リポジトリチェックアウトから作業する場合、スキルが存在することを確認します:

test -f skills/blueprint/SKILL.md

Related skills

Forks & variants (1)

Blueprint has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.

How it compares

Use blueprint for multi-session agent coordination; use a single-task coding skill when the change fits one PR and immediate execution.

FAQ

When should I not invoke Blueprint?

Do not use it for single-PR tasks, work finishable in under three tool calls, or when the user says just do it.

What does the five-stage pipeline produce?

Research collects context, Design splits into 3-12 PR-sized steps, Draft writes plans/ markdown, Review runs adversarial checks, Register saves and summarizes.

Does Blueprint require git and GitHub CLI?

It auto-detects git and gh; with both it plans full branch/PR/CI workflows, otherwise it switches to direct mode.

Is Blueprint safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.