blueprint

Creates step-by-step construction plans for multi-agent engineering projects.

1|Updated Apr 7, 2026
One-click install
npx skills add https://github.com/riftzen-bit/gemini-setup --skill blueprint-riftzen-bit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: blueprint
Source: https://github.com/riftzen-bit/gemini-setup/tree/main/skills/blueprint
Command: npx skills add https://github.com/riftzen-bit/gemini-setup --skill blueprint-riftzen-bit

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Breaks large, multi-session objectives into ordered, executable steps that any fresh agent can run cold, preventing context loss, rework, and coordination errors across parallel workstreams.

Core Features & Use Cases

  • Research phase: Pre-flight checks (git, gh auth, remote, default branch) and repository context gathering.
  • Design & dependency graph: Split objectives into one-PR-sized steps, assign dependency edges, detect parallelizable work, and set rollback strategies.
  • Draft & register: Emit self-contained Markdown plan files with per-step context briefs, verification commands, and exit criteria; save plans and update memory indexes.
  • Adversarial review & safety: Run a strongest-model review pass against an anti-pattern catalog and fix critical findings before finalizing.
  • Use cases: Planning large feature rollouts, multi-PR refactors or migrations, and coordinating parallel agent implementations (e.g., plugin providers or multi-service migrations).

Quick Start

Run the blueprint command with a concise objective and project name, for example: /blueprint myapp "migrate 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 down a large software refactor into parallel multi-PR workstreams?

To break down a large software refactor, you convert a high-level objective into a step-by-step executable construction plan with dependency graphs and parallelism detection. This produces per-step self-contained context briefs that independent cold-start agents can execute simultaneously.

What is a multi-agent construction plan for multi-session engineering projects?

A multi-agent construction plan is an ordered, executable sequence of steps for multi-session engineering projects. It assigns dependency edges, detects parallelizable work, and sets rollback strategies so fresh agents can run steps independently without context loss.

How do I create self-contained context briefs for cold-start agents?

Creating self-contained context briefs involves splitting objectives into one-PR-sized steps and emitting Markdown plan files with verification commands and exit criteria. This ensures any fresh agent can run a specific step cold without prior project context.

Can I use branch, PR, and CI guidance for multi-PR migrations when git and gh are available?

Branch, PR, and CI guidance for multi-PR migrations is supported when git and gh are available. The process performs pre-flight checks for git, gh auth, remote, and default branch to structure your rollout correctly.

What's the best way to validate a multi-PR plan against anti-patterns before execution?

The best way to validate a multi-PR plan against anti-patterns is to run an adversarial review gate. A strongest-model review pass checks the plan against an anti-pattern catalog and fixes critical findings before finalizing.

How do I manage plan mutation and registration for parallel agent implementations?

Managing plan mutation and registration for parallel agent implementations uses a plan mutation and registration protocol. It saves the emitted Markdown plan files and updates memory indexes to coordinate parallel workstreams and prevent coordination errors.