blueprint-status

blueprint-status is a skill for Claude Code from laurigates/claude-plugins. It costs 38 tokens per session (4,863 once invoked), scanned A, original, MIT.

A read-only status reporter for Blueprint projects. It shows the Blueprint version, configuration, counts of requirement and planning documents, traceability, and feature progress.

In plain words
What is it for?
Use it to inspect Blueprint health and produce a non-interactive report without changing project files.
Why use it?
It gives developers a quick audit of project documentation and reveals orphaned documents or outdated generated content.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; mentions CLAUDE.md.

Part of the blueprint-plugin plugin — 35 skills shipped together

Good fit Use it to inspect Blueprint health and produce a non-interactive report without changing project files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/laurigates/claude-plugins/blueprint-status
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add laurigates/claude-plugins --skill blueprint-status
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

Made for: Claude Code.

Or install blueprint-plugin, the plugin that ships this one along with the rest of its 35 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for blueprint-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/blueprint-status.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/blueprint-status)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/blueprint-status"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/blueprint-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,863 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium
  • medium Excessive Agency · line 9
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
  • medium Agent Snooping · line 53
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.04863
Opus 5 $0.00019 $0.02431
Sonnet 5 $0.00008 $0.00973
Haiku 4.5 $0.00004 $0.00486

Measured 3d ago against content hash f0027260c196, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

blueprint-status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

blueprint-plugin/skills/blueprint-status/SKILL.md · 432 lines

How it starts

The opening of the file, as written. The whole thing — 432 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Display the current blueprint configuration status with three-layer architecture breakdown.

When to Use This Skill

Use this skill when... Use blueprint-execute instead when...
You want a read-only status report (PRD/ADR/PRP counts, traceability) You want auto-detection that takes the next action, not just reports
You want the three-layer architecture breakdown Use blueprint-feature-tracker-status instead for FR/phase progress
You want to audit orphan docs and stale generated content Use blueprint-sync instead for an actionable drift reconcile
You run with --report-only for non-interactive auditing Use blueprint-upgrade instead when you've already spotted an upgrade

Flags

Flag Description
--report-only Display status report and exit without prompting for next action

Steps

  1. Check if blueprint is initialized:

    • Look for docs/blueprint/manifest.json
    • If not found, report:
      Blueprint not initialized in this project.
      Run `/blueprint:init` to get started.
      
  2. Read manifest and gather information:

    • Parse manifest.json for version and configuration
    • Parse id_registry for traceability metrics
    • Count PRDs in docs/prds/
    • Count ADRs in docs/adrs/
    • Count PRPs in docs/prps/
    • For ADRs, also count:
      • With domain tags (grep -l "^domain:" docs/adrs/*.md | wc -l)
      • With relationship declarations (supersedes, extends, related)
      • By status (Accepted, Superseded, Deprecated)
    • Count work-orders (pending, completed, archived)
    • Resolve the configured rules path: jq -r '.structure.generated_rules_path // ".claude/rules/"' docs/blueprint/manifest.json
    • Count generated rules in the configured path (default .claude/rules/)
    • Count custom skills in .claude/skills/
    • Count custom commands in .claude/commands/
    • Check for .claude/rules/ directory
    • Check for CLAUDE.md file
    • Check for docs/blueprint/feature-tracker.json
    • If feature tracker exists, read statistics and last_updated
    • Read task_registry from manifest (if present)
    • For each task, calculate schedule status:
      • ok: Not yet due based on schedule
      • due: Due for execution based on schedule
      • overdue: Past due by more than 1 schedule period (e.g., daily task not run in 2+ days)
      • disabled: enabled: false
      • never: last_completed_at is null (never tracked)

Read the full file on GitHub · 432 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 432 lines · 38 tokens per session scan A f0027260c196

Subscribe to this mod's changes

blueprint-status is a skill published in the GitHub repository laurigates/claude-plugins (58 stars, last pushed yesterday), licensed MIT. It adds 38 tokens to every session and 4,863 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories