blueprint-docs-list

Solid

List blueprint documents (ADRs, PRDs, PRPs) with frontmatter metadata. Use when listing docs, auditing statuses, or generating an index for project documentation.

Data & Documents 48 stars 6 forks Updated today MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
56
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

List blueprint documents programmatically from the filesystem. Extracts metadata from YAML frontmatter and markdown headers. ## When to Use This Skill | Use this skill when... | Use blueprint-adr-list instead when... | |---|---| | You want a combined index of ADRs, PRDs, and PRPs (or summary across all) | You only need an ADR-specific index table | | You want to audit document statuses across all blueprint types | You need ADR-specific fields like domain or status filtering | | You want a quick overview using `all` to see counts of every doc type | You're generating an ADR index for a README | **Use Case**: Audit document status, generate index tables, or get a quick overview of all project documentation. ## Parameters | Arg | Description | |-----|-------------| | `adrs` | List Architecture Decision Records | | `prds` | List Product Requirements Documents | | `prps` | List Product Requirement Prompts | | `all` | Summary of all document types | ## Execution ### If arg is `adrs` Run `/blueprint:adr-list` — it handles ADR-specific extraction with both header-section and frontmatter support. ### If arg is `prds` ```bash printf "| PRD | Title | Status | Date |\n|-----|-------|--------|------|\n" && \ for f in docs/prds/*.md; do [ -f "$f" ] || continue fname=$(basename "$f") [ "$fname" = "README.md" ] && continue doc_title=$(head -50 "$f" | grep -m1 "^title:" | sed 's/^title:[[:space:]]*//' || true) doc_status=$(head -50 "$f" | grep -m1 "^status:" | sed 's/^stat...

Details

Author
laurigates
Repository
laurigates/claude-plugins
Created
7 months ago
Last Updated
today
Language
Shell
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category