blueprint:list-adrs
List all Architecture Decision Records with their status and summaries. Use when the user wants to see all decisions, review ADR history, or find a specific decision.
What this skill does
# List ADRs Display all Architecture Decision Records with status and brief summaries. **Invoked by:** `/blueprint:list-adrs` or when user asks "list decisions", "show ADRs", "what decisions exist?". ## Principles 1. **Use globbing**: Find ADRs via `docs/adrs/*.md`, no index file needed 2. **Parse frontmatter**: Extract status from each ADR file 3. **Efficient batching**: For large sets, show summary first ## Process ### Step 1: Find ADRs **Tool Preferences:** - **Glob tool**: Find ADR files with `docs/adrs/*.md` - **Read tool**: Read individual ADR files for metadata ``` docs/adrs/*.md ``` **If no files found:** ``` No ADRs found. Use `/blueprint:decide` to record your first architecture decision. ``` ### Step 2: Parse Each ADR For each ADR file, extract from frontmatter and content: | Field | Source | |-------|--------| | Number | From filename (e.g., `001-postgres.md` → 001) | | Title | From `# ADR-NNN: [Title]` heading | | Date | From frontmatter `date:` | | Status | From frontmatter `status:` (Active/Draft/Superseded/Deprecated) | | Summary | First sentence of "Decision" section (~60 chars) | | Superseded by | From frontmatter `superseded_by:` | | Deprecated reason | From frontmatter `deprecated_reason:` | ### Step 3: Group by Status Group ADRs into sections: 1. **Active** - Current decisions in effect 2. **Draft** - Decisions with incomplete documentation 3. **Superseded** - Decisions replaced by newer ones 4. **Deprecated** - Decisions removed entirely ### Step 4: Display Tables Sort by ADR number (newest first within each section). ```markdown ## Architecture Decision Records ### Active ([count]) | # | Title | Date | Summary | |---|-------|------|---------| | 006 | Use Zod for validation | 2025-01-20 | Schema validation with TypeScript inference | | 005 | PostgreSQL for database | 2025-01-15 | ACID compliance, JSON support | ### Draft ([count]) | # | Title | Date | Missing | |---|-------|------|---------| | 007 | Use Redis for sessions | 2025-01-22 | Context, Rationale | ### Superseded ([count]) | # | Title | Superseded By | |---|-------|---------------| | 002 | ESLint + Prettier | ADR-004 | ### Deprecated ([count]) | # | Title | Date | Reason | |---|-------|------|--------| | 001 | Redis caching | 2025-01-25 | Caching removed | --- View full ADR: `docs/adrs/NNN-title.md` ``` ## Large ADR Sets (>20) For projects with many ADRs: 1. **Show summary first:** ``` Found 42 ADRs: 30 Active, 5 Draft, 5 Superseded, 2 Deprecated View: all | active | draft | superseded | deprecated | [search term] ``` 2. **Load details on demand** - only read full ADR content when user requests specific section or search ## Empty Sections Hide section headers if count is 0, but always show Active: ```markdown ### Active (0) *No active decisions. Use `/blueprint:decide` to record one.* ``` ## Filtering If user asks for specific filter: | Command | Action | |---------|--------| | `/blueprint:list-adrs active` | Show only Active | | `/blueprint:list-adrs draft` | Show only Draft (incomplete) | | `/blueprint:list-adrs database` | Search titles/content for "database" | ## After Display Offer contextual actions based on what's shown: - Draft ADRs exist → "Complete drafts with `/blueprint:decide [topic]`" - Superseded/Deprecated ADRs with no code references → "Consider deleting - git history is the archive" - General → "Add decision: `/blueprint:decide [topic]`" ## Examples - `/blueprint:list-adrs` → Full list grouped by status - `/blueprint:list-adrs active` → Only active decisions - `/blueprint:list-adrs draft` → Incomplete ADRs needing attention - "What decisions need work?" → Show Draft section - "Find ADRs about authentication" → Search filter
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.