blueprint

Convert complex engineering requests into dependency-aware multi-PR construction plans.

Updated May 29, 2026
One-click install
npx skills add https://github.com/Mang30/myskills --skill blueprint-mang30
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: blueprint
Source: https://github.com/Mang30/myskills/tree/main/skills/blueprint
Command: npx skills add https://github.com/Mang30/myskills --skill blueprint-mang30

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps users convert a single, complex request into a structured, multi-step engineering plan that can be executed across multiple PRs and sessions without losing context.

Core Features & Use Cases

  • Cold-start multi-step planning: Generates a step-by-step plan where each step includes its own context summary so new agents can execute independently.
  • Dependency-aware parallelization: Builds a dependency graph to detect parallel-ready steps and outlines the order where shared inputs matter.
  • Guardrailed quality review: Uses an adversarial review gate to catch dependency mistakes, missing invariants, and common anti-patterns before finalizing the plan.
  • Workflow-aware execution: Produces a branch/PR/CI-oriented workflow when git + GitHub CLI are available, otherwise falls back to a direct editing mode.

Quick Start

Use the blueprint skill to create a multi-PR construction plan for your repository by writing: /blueprint <repo-or-app-name> "<your detailed multi-pr goal>".

Frequently Asked Questions about blueprint

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

FAQPage Schema
How do I plan a complex codebase migration across multiple pull requests?

To generate a multi-PR construction plan, provide a detailed goal and repository name. The system uses a 5-stage pipeline (research, design, draft, adversarial review, registration) to produce dependency-aware, parallel-ready steps with branch and CI workflow generation.

What is the best way to sequence parallel engineering tasks with dependencies?

Sequencing parallel engineering tasks requires a dependency graph that detects parallel-ready steps and maps shared inputs. An adversarial review gate then catches dependency mistakes and missing invariants before finalizing the multi-session execution plan.

How do I generate a CI workflow and branch plan for a multi-agent engineering project?

Generate a CI workflow and branch plan by running a construction pipeline that outputs branch and PR-oriented execution steps when git and GitHub CLI are present. The system automatically falls back to a safe direct editing mode if these CLIs are unavailable.

How does an adversarial review gate improve multi-step refactoring plans?

An adversarial review gate improves multi-step refactoring plans by catching dependency mistakes, missing invariants, and common anti-patterns before finalizing. This guardrailed quality review ensures the multi-PR construction plan is safe for independent agent execution.