Sign In

pi-blueprint

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pi-blueprint

A Pi extension that turns high-level objectives into phased, multi-session construction plans with dependency tracking and verification gates.

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

pi-blueprint

A Pi extension that turns high-level objectives into phased, multi-session construction plans with dependency tracking and verification gates.

Installation

pi install npm:pi-blueprint

Commands

CommandDescription
/blueprint <objective>Generate a phased plan from an objective
/blueprint abandonAbandon the active blueprint
/plan-statusShow detailed progress with completion percentage
/plan-verifyRun verification gates for the current phase
/plan-nextGet and start the next actionable task

LLM Tools

ToolDescription
blueprint_createCreate a new blueprint from structured phases
blueprint_statusGet current plan progress
blueprint_updateMark tasks as completed, in_progress, or skipped
blueprint_nextGet the next actionable task

How It Works

  • Run /blueprint "Add OAuth2 authentication" to start
  • The LLM generates a phased plan with tasks, dependencies, and verification gates
  • On each session start, the active blueprint context is injected into the system prompt
  • Use /plan-next to work through tasks sequentially
  • Use /plan-verify to run phase verification gates (tests, typecheck) before advancing
  • Progress persists across sessions in ~/.pi/blueprints/

Storage

~/.pi/blueprints/
  index.json              # Active blueprint pointer
  <blueprint-id>/
    plan.md               # Human-readable plan (auto-generated)
    state.json            # Machine-readable state (source of truth)
    history.jsonl          # Audit log of state transitions
    sessions.json          # Session-to-task mapping

Features

  • Phased execution: Work is decomposed into ordered phases with verification gates
  • Dependency tracking: Tasks declare dependencies; blocked tasks are surfaced automatically
  • Verification gates: Tests, type-check, user approval, or custom commands gate phase advancement
  • Multi-session persistence: Plan state survives session restarts with context injection
  • Cycle detection: Dependency cycles are rejected at blueprint creation time

Keywords

pi-package

FAQs

Package last updated on 14 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts