blueprint — for Claude Code blueprint, everything-claude-code, official, for Claude Code, ide skills, construction planning, step-by-step workflows, AI-powered workflow automation, coding task management, productivity enhancement, Claude Code

Verified
v1.0.0
GitHub

About this Skill

Perfect for Coding Agents needing advanced construction plan generation and execution capabilities. Blueprint is a construction plan generator that creates step-by-step workflows for coding tasks, utilizing AI to automate the planning process.

Features

Generates step-by-step construction plans using AI
Breaks down large features into smaller, manageable tasks
Automates workflow planning to reduce context loss
Creates self-contained Markdown plan files for easy execution
Delegates adversarial review to strongest-model sub-agents

# Core Topics

affaan-m affaan-m
[105.8k]
[13742]
Updated: 3/25/2026

Agent Capability Analysis

The blueprint skill by affaan-m is an open-source official AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for for Claude Code, construction planning, step-by-step workflows.

Ideal Agent Persona

Perfect for Coding Agents needing advanced construction plan generation and execution capabilities.

Core Value

Empowers agents to break down large features into manageable, dependent steps using Markdown plan files, and execute them in parallel or serial order, leveraging git and GitHub CLI for seamless branch and PR management, and strongest-model sub-agents for adversarial review.

Capabilities Granted for blueprint

Automating large feature development into smaller, dependent pull requests
Generating refactor or migration plans spanning multiple sessions
Coordinating parallel workstreams across sub-agents for complex projects

! Prerequisites & Limits

  • Requires git and GitHub CLI for full branch/PR/CI workflow functionality
  • Not suitable for tasks completable in a single PR or fewer than 3 tool calls
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

blueprint

Boost productivity with the blueprint AI agent skill, generating step-by-step construction plans for coding tasks. Ideal for developers, it streamlines...

SKILL.md
Readonly

Blueprint — Construction Plan Generator

Turn a one-line objective into a step-by-step construction plan that any coding agent can execute cold.

When to Use

  • Breaking a large feature into multiple PRs with clear dependency order
  • Planning a refactor or migration that spans multiple sessions
  • Coordinating parallel workstreams across sub-agents
  • Any task where context loss between sessions would cause rework

Do not use for tasks completable in a single PR, fewer than 3 tool calls, or when the user says "just do it."

How It Works

Blueprint runs a 5-phase pipeline:

  1. Research — Pre-flight checks (git, gh auth, remote, default branch), then reads project structure, existing plans, and memory files to gather context.
  2. Design — Breaks the objective into one-PR-sized steps (3–12 typical). Assigns dependency edges, parallel/serial ordering, model tier (strongest vs default), and rollback strategy per step.
  3. Draft — Writes a self-contained Markdown plan file to plans/. Every step includes a context brief, task list, verification commands, and exit criteria — so a fresh agent can execute any step without reading prior steps.
  4. Review — Delegates adversarial review to a strongest-model sub-agent (e.g., Opus) against a checklist and anti-pattern catalog. Fixes all critical findings before finalizing.
  5. Register — Saves the plan, updates memory index, and presents the step count and parallelism summary to the user.

Blueprint detects git/gh availability automatically. With git + GitHub CLI, it generates full branch/PR/CI workflow plans. Without them, it switches to direct mode (edit-in-place, no branches).

Examples

Basic usage

/blueprint myapp "migrate database to PostgreSQL"

Produces plans/myapp-migrate-database-to-postgresql.md with steps like:

  • Step 1: Add PostgreSQL driver and connection config
  • Step 2: Create migration scripts for each table
  • Step 3: Update repository layer to use new driver
  • Step 4: Add integration tests against PostgreSQL
  • Step 5: Remove old database code and config

Multi-agent project

/blueprint chatbot "extract LLM providers into a plugin system"

Produces a plan with parallel steps where possible (e.g., "implement Anthropic plugin" and "implement OpenAI plugin" run in parallel after the plugin interface step is done), model tier assignments (strongest for the interface design step, default for implementation), and invariants verified after every step (e.g., "all existing tests pass", "no provider imports in core").

Key Features

  • Cold-start execution — Every step includes a self-contained context brief. No prior context needed.
  • Adversarial review gate — Every plan is reviewed by a strongest-model sub-agent against a checklist covering completeness, dependency correctness, and anti-pattern detection.
  • Branch/PR/CI workflow — Built into every step. Degrades gracefully to direct mode when git/gh is absent.
  • Parallel step detection — Dependency graph identifies steps with no shared files or output dependencies.
  • Plan mutation protocol — Steps can be split, inserted, skipped, reordered, or abandoned with formal protocols and audit trail.
  • Zero runtime risk — Pure Markdown skill. The entire repository contains only .md files — no hooks, no shell scripts, no executable code, no package.json, no build step. Nothing runs on install or invocation beyond Claude Code's native Markdown skill loader.

Installation

This skill ships with Everything Claude Code. No separate installation is needed when ECC is installed.

Full ECC install

If you are working from the ECC repository checkout, verify the skill is present with:

bash
1test -f skills/blueprint/SKILL.md

To update later, review the ECC diff before updating:

bash
1cd /path/to/everything-claude-code 2git fetch origin main 3git log --oneline HEAD..origin/main # review new commits before updating 4git checkout <reviewed-full-sha> # pin to a specific reviewed commit

Vendored standalone install

If you are vendoring only this skill outside the full ECC install, copy the reviewed file from the ECC repository into ~/.claude/skills/blueprint/SKILL.md. Vendored copies do not have a git remote, so update them by re-copying the file from a reviewed ECC commit rather than running git pull.

Requirements

  • Claude Code (for /blueprint slash command)
  • Git + GitHub CLI (optional — enables full branch/PR/CI workflow; Blueprint detects absence and auto-switches to direct mode)

Source

Inspired by antbotlab/blueprint — upstream project and reference design.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is blueprint?

Perfect for Coding Agents needing advanced construction plan generation and execution capabilities. Blueprint is a construction plan generator that creates step-by-step workflows for coding tasks, utilizing AI to automate the planning process.

How do I install blueprint?

Run the command: npx killer-skills add affaan-m/everything-claude-code/blueprint. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for blueprint?

Key use cases include: Automating large feature development into smaller, dependent pull requests, Generating refactor or migration plans spanning multiple sessions, Coordinating parallel workstreams across sub-agents for complex projects.

Which IDEs are compatible with blueprint?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for blueprint?

Requires git and GitHub CLI for full branch/PR/CI workflow functionality. Not suitable for tasks completable in a single PR or fewer than 3 tool calls.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add affaan-m/everything-claude-code/blueprint. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use blueprint immediately in the current project.

Related Skills

Looking for an alternative to blueprint or another official skill for your workflow? Explore these related open-source skills.

View All

flags

Logo of facebook
facebook

Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.

243.6k
0
Developer

extract-errors

Logo of facebook
facebook

Use when adding new error messages to React, or seeing unknown error code warnings.

243.6k
0
Developer

fix

Logo of facebook
facebook

Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.

243.6k
0
Developer

flow

Logo of facebook
facebook

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

243.6k
0
Developer