blueprint

Generates step-by-step construction plans for multi-session, multi-agent engineering projects.

1|Updated Oct 11, 2025
One-click install
npx skills add https://github.com/ibytechaos/claude --skill blueprint-ibytechaos
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: blueprint
Source: https://github.com/ibytechaos/claude/tree/main/plugins/everything-claude-code/skills/blueprint
Command: npx skills add https://github.com/ibytechaos/claude --skill blueprint-ibytechaos

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Large engineering tasks like migrations and refactors lose context between sessions and agents, causing rework and coordination failures. Blueprint turns a one-line objective into a structured plan where every step is self-contained enough for a fresh agent to execute cold. ## Core Features & Use Cases - Five-phase pipeline: Research, Design, Draft, adversarial Review, and Register phases produce a validated Markdown plan in plans/. - Cold-start step briefs: Each step includes a context brief, task list, verification commands, and exit criteria so no prior session context is needed. - Dependency graph and parallelism: Detects which steps can run in parallel across sub-agents and assigns model tiers per step. - Graceful degradation: Detects git and GitHub CLI availability, generating full branch/PR/CI workflows or falling back to direct edit-in-place mode. - Use Case: Run /blueprint myapp "migrate database to PostgreSQL" to produce a multi-step plan covering driver setup, migration scripts, repository layer updates, integration tests, and cleanup. ## Quick Start Ask the agent to create a blueprint plan for migrating your application's database to PostgreSQL.

Frequently Asked Questions about blueprint

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I break a large feature into multiple PRs?

Run the blueprint command with your project name and a one-line objective, such as migrating a database or extracting a plugin system. It produces a Markdown plan with 3-12 one-PR-sized steps, each with dependency ordering, verification commands, and exit criteria.

How to coordinate multiple AI agents on one coding project?

Blueprint assigns each plan step a self-contained context brief so a fresh agent can execute it cold without reading prior steps. Its dependency graph also detects steps with no shared files, allowing them to run in parallel across sub-agents.

Does blueprint work without git or GitHub CLI?

Yes, blueprint detects git and gh availability automatically during its research phase. Without them it switches to direct mode, editing files in place without branch, PR, or CI workflow steps.

When should I not use a multi-step construction plan?

Skip blueprint for tasks completable in a single PR, fewer than three tool calls, or when you want immediate execution. The planning pipeline adds overhead that only pays off for multi-session or multi-agent work.

How does blueprint ensure plan quality before execution?

Every plan passes an adversarial review gate where a strongest-model sub-agent checks it against a completeness checklist and anti-pattern catalog. Critical findings are fixed before the plan is finalized and registered.