Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

blueprint-status蓝图状态

Agent Skill

blueprint-status 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,260

周安装

52

GitHub Stars

28

下载量

412
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:blueprint-status(蓝图状态)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/blueprint-status
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill blueprint-status
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill blueprint-status

简介

blueprint-status 用于显示当前蓝图配置状态,提供三层架构分解视图。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 读取 manifest.json 并生成包含版本、配置和文档计数的详细状态报告。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

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

Flags

FlagDescription
--report-onlyDisplay 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. `

  1. 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)

  1. Check for upgrade availability:

- Compare format_version in manifest with current plugin version - Current format version: 3.3.0 - If manifest version < current → upgrade available

3a. Monorepo portfolio refresh (v3.3.0+):

  • If workspaces.role == "root", invoke /blueprint:workspace-scan to refresh workspaces.children and cached stats before rendering. Skip if scanned within the last hour (last_scanned_at).
  • If workspaces.role == "child", resolve workspaces.root_relative_path and mention the parent in the status report but do NOT trigger a scan.
  1. Check generated content status:

- For each generated rule in manifest: - Hash current file content - Compare with stored content_hash - Status: current (unchanged), modified (user edited), stale (source PRDs changed)

  1. Display status report: ` Blueprint Status Version: v{format_version} {upgrade_indicator} Initialized: {created_at} Last Updated: {updated_at} Project Configuration: - Name: {project.name} - Type: {project.type} - Stack: {project.detected_stack} - Rules Mode: {structure.claude_md_mode} Project Documentation (docs/): - PRDs: {count} in docs/prds/ - ADRs: {count} in docs/adrs/ - With domain tags: {count}/{total} ({percent}%) - With relationships: {count} - Status: {accepted} Accepted, {superseded} Superseded, {deprecated} Deprecated - PRPs: {count} in docs/prps/ Work Orders (docs/blueprint/work-orders/): - Pending: {count} - Completed: {count} - Archived: {count} Three-Layer Architecture: Layer 1: Plugin (blueprint-plugin) - Commands: /blueprint:* (auto-updated with plugin) - Skills: blueprint-development, blueprint-migration, confidence-scoring - Agents: requirements-documentation, architecture-decisions, prp-preparation Layer 2: Generated ({structure.generated_rules_path or.claude/rules/}) - Path: {structure.generated_rules_path} (default:.claude/rules/) - Rules: {count} ({status_summary}) {list each with status indicator: ✅ current, ⚠️ modified, 🔄 stale} Layer 3: Custom (.claude/skills/,.claude/commands/) - Skills: {count} (user-maintained) - Commands: {count} (user-maintained) {If feature_tracker enabled:} Feature Tracker: - Status: Enabled - Source: {feature_tracker.source_document} - Progress: {statistics.complete}/{statistics.total_features} ({statistics.completion_percentage}%) - Last Sync: {last_updated} - Phases: {count in_progress} active, {count complete} complete {If workspaces.role == "root":} Monorepo Portfolio ({workspaces.children|length} workspaces, scanned {last_scanned_at}): | Workspace | Format | Progress | Phase | |-----------|--------|----------|-------| {for each child:} | {child.path} | v{child.manifest_format_version} | {child.cached_stats.complete}/{child.cached_stats.total} ({child.cached_stats.completion_percentage}%) | {child.cached_stats.current_phase or "—"} | {If workspaces.role == "child":} Workspace: child of blueprint at {workspaces.root_relative_path} {If task_registry exists:} Task Health: - derive-prd last: {age} schedule: {schedule} status: {status} - derive-plans last: {age} schedule: {schedule} status: {status} - derive-rules last: {age} schedule: {schedule} status: {status} - generate-rules last: {age} schedule: {schedule} status: {status} - adr-validate last: {age} schedule: {schedule} status: {status} - feature-tracker-sync last: {age} schedule: {schedule} status: {status} - sync-ids last: {age} schedule: {schedule} status: {status} - claude-md last: {age} schedule: {schedule} status: {status} - curate-docs disabled Traceability (ID Registry): - Total documents: {count} ({x} PRDs, {y} ADRs, {z} PRPs, {w} WOs) - With IDs: {count}/{total} ({percent}%) - Linked to GitHub: {count}/{total} ({percent}%) - Orphan documents: {count} (docs without GitHub issues) - Orphan issues: {count} (issues without linked docs) - Broken links: {count} {If orphans exist:} Orphan Documents (no GitHub issues): - {PRD-001}: {title} - {PRP-003}: {title} Orphan GitHub Issues (no linked docs): - #{N}: {title} - #{M}: {title} Structure: ✅ docs/blueprint/manifest.json {✅|❌} docs/prds/ {✅|❌} docs/adrs/ {✅|❌} docs/prps/ {✅|❌} docs/blueprint/work-orders/ {✅|❌} docs/blueprint/ai_docs/ {✅|❌} docs/blueprint/feature-tracker.json {✅|❌}.claude/rules/ {✅|❌} CLAUDE.md {If upgrade available:} Upgrade available: v{current} → v{latest} Run /blueprint:upgrade to upgrade. {If modified generated content:} Modified content detected: {count} files Run /blueprint:sync to review changes. Run /blueprint:promote [name] to move to custom layer. {If stale generated content:} Stale content detected: {count} files (PRDs changed since generation) Run /blueprint:generate-skills to regenerate. {If up to date:} Blueprint is up to date. `
  2. Additional checks:

- Warn if any tasks are overdue (e.g., "3 maintenance tasks overdue - run /blueprint:execute to catch up") - Warn if feature-tracker.json is stale (> 1 day since last update) - Warn if PRDs exist but no generated rules - Warn if modular rules enabled but .claude/rules/ is empty - Warn if generated content is modified or stale - Warn if feature-tracker.json is older than 7 days (needs sync) - Warn if TODO.md has been modified since last sync - Warn if ADRs have potential issues: - Multiple "Accepted" ADRs in same domain (potential conflict) - ADRs without domain tags (harder to detect conflicts) - Missing bidirectional links (e.g., supersedes without corresponding superseded_by) - Traceability checks: - Warn if documents exist without IDs (run /blueprint:sync-ids) - Warn if orphan documents exist (docs without GitHub issues) - Warn if orphan issues exist (GitHub issues without linked docs) - Warn if broken links detected (referenced docs/issues don't exist)

  1. If --report-only: Output the status report from Steps 5-6 and exit. Skip the interactive prompt below.
  2. Prompt for next action (use AskUserQuestion): Build options dynamically based on state: question: "What would you like to do?" options: # Dynamic - include based on state detected above - label: "Upgrade to v{latest}" (if upgrade available) description: "Upgrade blueprint format to latest version" - label: "Sync generated content" (if modified) description: "Review changes to generated skills/commands" - label: "Regenerate from PRDs" (if stale) description: "Update generated content from changed PRDs" - label: "Generate rules from PRDs" (if PRDs exist, no rules) description: "Extract project-specific rules from your PRDs" - label: "Update CLAUDE.md" (if stale or missing) description: "Regenerate project overview document" - label: "Sync feature tracker" (if feature tracker stale) description: "Synchronize tracker with TODO.md" - label: "Validate ADRs" (if ADR issues detected) description: "Check ADR relationships, conflicts, and missing links" - label: "Sync document IDs" (if documents without IDs) description: "Assign IDs to all documents missing them" - label: "Link documents to GitHub" (if orphans exist) description: "Create/link GitHub issues for orphan documents" - label: "Run overdue tasks ({N} due)" (if overdue tasks exist) description: "Execute overdue maintenance tasks" # Always include these: - label: "Continue development" description: "Run /project:continue to work on next task" - label: "I'm done for now" description: "Exit status check" Based on selection:

- If upgrade available → Include "Upgrade to v{latest}" - If modified content → Include "Sync generated content" - If stale content → Include "Regenerate skills" - If PRDs exist but no generated skills → Include "Generate skills from PRDs" - If skills exist but no commands → Include "Generate workflow commands" - If CLAUDE.md stale → Include "Update CLAUDE.md" - If feature tracker exists but stale → Include "Sync feature tracker" - If ADRs have potential issues → Include "Validate ADRs" - If documents without IDs → Include "Sync document IDs" - If orphan documents/issues → Include "Link documents to GitHub" - If overdue tasks exist → Include "Run overdue maintenance tasks" - Always include "Continue development" and "I'm done" - "Upgrade" → Run /blueprint:upgrade - "Sync" → Run /blueprint:sync - "Regenerate" → Run /blueprint:generate-rules - "Generate rules" → Run /blueprint:generate-rules - "Update CLAUDE.md" → Run /blueprint:claude-md - "Sync feature tracker" → Run /blueprint:feature-tracker-sync - "Validate ADRs" → Run /blueprint:adr-validate - "Sync document IDs" → Run /blueprint:sync-ids - "Link documents to GitHub" → For each orphan, prompt to create/link issue - "Run overdue tasks" → Run /blueprint:execute for overdue tasks - "Continue development" → Run /project:continue - "I'm done" → Exit

Example Output:

Blueprint Status

Version: v3.0.0
Initialized: 2024-01-10T09:00:00Z
Last Updated: 2024-01-15T14:30:00Z

Project Configuration:
- Name: my-awesome-project
- Type: team
- Stack: typescript, bun, react
- Rules Mode: modular

Project Documentation (docs/):
- PRDs: 3 in docs/prds/
- ADRs: 5 in docs/adrs/
  - With domain tags: 4/5 (80%)
  - With relationships: 2
  - Status: 3 Accepted, 2 Superseded
- PRPs: 2 in docs/prps/

Work Orders (docs/blueprint/work-orders/):
- Pending: 5
- Completed: 12
- Archived: 2

Three-Layer Architecture:

Layer 1: Plugin (blueprint-plugin)
- Commands: 13 /blueprint:* commands (auto-updated)
- Skills: 3 (blueprint-development, blueprint-migration, confidence-scoring)
- Agents: 3 (requirements-documentation, architecture-decisions, prp-preparation)

Layer 2: Generated (.claude/rules/blueprint/)
- Path: .claude/rules/blueprint/ (configured; default is .claude/rules/)
- Rules: 4 (3 current, 1 modified)
  - ✅ architecture-patterns.md (current)
  - ⚠️ testing-strategies.md (modified locally)
  - ✅ implementation-guides.md (current)
  - ✅ quality-standards.md (current)

Layer 3: Custom (.claude/skills/, .claude/commands/, .claude/rules/)
- Skills: 1 (my-custom-skill)
- Commands: 0
- Rules: 0 (user-maintained)

Feature Tracker:
- Status: Enabled
- Source: REQUIREMENTS.md
- Progress: 22/42 (52.4%)
- Last Sync: 2024-01-14
- Phases: 1 active, 2 complete

Task Health:
  derive-prd          last: 2d ago   schedule: on-demand   status: ok
  derive-plans        last: 5d ago   schedule: weekly      status: due
  derive-rules        last: 3d ago   schedule: weekly      status: ok
  generate-rules      last: 1d ago   schedule: on-change   status: ok
  adr-validate        last: 4d ago   schedule: weekly      status: ok
  feature-tracker-sync last: 3d ago  schedule: daily       status: overdue
  sync-ids            last: 3d ago   schedule: on-change   status: ok
  claude-md           last: 2d ago   schedule: on-change   status: ok
  curate-docs         disabled

Traceability (ID Registry):
- Total documents: 22 (3 PRDs, 5 ADRs, 2 PRPs, 12 WOs)
- With IDs: 22/22 (100%)
- Linked to GitHub: 18/22 (82%)
- Orphan documents: 4 (PRD-002, ADR-0004, PRP-001, WO-008)
- Orphan issues: 2 (#23, #45)
- Broken links: 0

Structure:
✅ docs/blueprint/manifest.json
✅ docs/prds/
✅ docs/adrs/
✅ docs/prps/
✅ docs/blueprint/work-orders/
✅ docs/blueprint/ai_docs/
✅ docs/blueprint/feature-tracker.json
✅ .claude/rules/
✅ CLAUDE.md

Modified content detected: 1 file
   Run `/blueprint:sync` to review or `/blueprint:promote testing-strategies` to preserve.

Blueprint is up to date.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.07%
按下载量换算136

Claude

28.69%
按下载量换算118

Cursor

19.84%
按下载量换算82

Gemini CLI

9.1%
按下载量换算37

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills