blueprint:status
Show overview of project's Blueprint structure plus important adjacent DESIGN.md context. Use when the user asks about documented decisions, project status, or wants to see what's been captured.
What this skill does
# Blueprint Status
Display an overview of the project's Blueprint intent-capture structure.
**Invoked by:** `/blueprint:status` or when user asks "what's documented?", "show me the specs", or "blueprint status".
## Principles
1. **Parallel operations**: Batch file reads and globs for efficiency.
2. **Use globbing**: Discover ADRs via `docs/adrs/*.md`, no index needed.
3. **Graceful degradation**: Show what exists, suggest what's missing.
## Process
1. Check if Blueprint structure exists, and separately whether `DESIGN.md` exists
2. Read and summarize all documented artifacts
3. Display formatted overview
**Tool Preferences:**
- **File finding**: Use Claude's Glob tool (not `find` or `ls`)
- **File reading**: Use Claude's Read tool (not `cat`)
- **Content search**: Use Claude's Grep tool for pattern counts
## Step 1: Check Structure Exists
Look for these paths across the Blueprint trees and adjacent design context:
**Code / architecture tree:**
- `docs/specs/`
- `docs/adrs/`
- `patterns/`
**Important adjacent design context:**
- `DESIGN.md` (not part of the Blueprint structure)
**Design / UX tree:**
- `design/ux-decisions/`
If none of these paths exist:
```
No Blueprint structure found.
Run `/blueprint:setup-repo` for a new project, or `/blueprint:onboard` for an existing codebase.
```
Both trees are optional independently — a backend-only repo may have no `design/` tree, and a design-system repo may have no `docs/adrs/`. `DESIGN.md` is reported separately as important adjacent design context. Show only the sections that exist.
## Step 2: Gather Information
**Use parallel operations** to minimize latency. Gather all information in a single batch:
### Efficient Batch Approach
Run these checks in parallel (single glob + batch file reads):
```bash
# Single glob to find all relevant files
# Pattern: DESIGN.md, docs/specs/*.md, docs/adrs/*.md, patterns/good/*, patterns/bad/*.md, CLAUDE.md
```
**Glob patterns to check:**
Code / architecture tree:
- `docs/specs/{product,tech-stack,boundaries}.md` - Core spec files
- `docs/specs/features/*.md` - Feature specs (discovered via globbing)
- `docs/specs/non-functional/*.md` - NFR files (discovered via globbing)
- `docs/adrs/*.md` - All ADR files (discovered via globbing)
- `patterns/good/*` - Good code pattern files (excluding .gitkeep)
- `patterns/bad/anti-patterns.md` - Code anti-patterns file
Important adjacent design context:
- `DESIGN.md` - top-level design context (cross-cutting UI rules/prohibitions), not part of the Blueprint structure
Design / UX tree:
- `design/ux-decisions/*.md` - UX decisions (discovered via globbing)
Other:
- `CLAUDE.md` - Agent instructions
**In one batch read:**
1. Read each `docs/adrs/*.md` file - parse frontmatter for status
2. Read `DESIGN.md` if present - count non-placeholder bullets/headings
3. Read each `design/ux-decisions/*.md` file - parse frontmatter for status
4. Read both anti-patterns files - count `## ` headings
5. Read `CLAUDE.md` - check for "Pre-Edit Checklist" section
### Information to Extract
| Category | Check | Source |
|----------|-------|--------|
| Specs | product.md exists | glob |
| Specs | tech-stack.md exists | glob |
| Specs | boundaries.md exists | glob |
| Specs | Feature spec count | glob `docs/specs/features/*.md` |
| Specs | NFR file count | glob `docs/specs/non-functional/*.md` |
| ADRs | Active/Draft/Superseded/Deprecated counts | frontmatter status |
| ADRs | Most recent | highest number in Active ADRs |
| Patterns | Good count | glob `patterns/good/*` (exclude .gitkeep) |
| Patterns | Bad count | `## ` headings in `patterns/bad/anti-patterns.md` |
| DESIGN.md | Exists + non-placeholder rules | file check + content scan |
| UX decisions | Active/Draft/Superseded/Deprecated counts | frontmatter status |
| UX decisions | Most recent | highest number in Active UX decisions |
| CLAUDE.md | Exists + has checklist | file check + "Pre-Edit Checklist" search |
## Step 3: Display Summary
Show the design section if `DESIGN.md` or `design/` exists. Show the code tree section only if `docs/` or `patterns/` exists.
```markdown
## Blueprint Status for [Project Name]
## Code / Architecture Tree
### Specs
- Product: docs/specs/product.md [exists ? "✓" : "✗ missing"]
- Tech Stack: docs/specs/tech-stack.md [exists ? "✓" : "✗ missing"]
- Boundaries: docs/specs/boundaries.md [exists ? "✓" : "✗ missing"]
- Features: [count] feature specs
- Non-Functional: [count] NFR files
### ADRs
- Active: [count]
- Draft: [count] (needs refinement)
- Superseded: [count] (consider deleting if no code references)
- Deprecated: [count] (consider deleting if no code references)
- Recent: ADR-[NNN] "[title]" ([date])
### Patterns
- Good: [count] examples in patterns/good/
- Bad: [count] anti-patterns in patterns/bad/anti-patterns.md
## Design / UX Tree
### Design Context
- DESIGN.md: [exists ? "✓ N rules/headings" : "✗ missing"]
### UX Decisions
- Active: [count]
- Draft: [count] (needs refinement)
- Superseded: [count]
- Deprecated: [count]
- Recent: UX-[NNN] "[title]" ([date])
## CLAUDE.md
[exists && hasChecklist ? "✓ Pre-Edit Checklist present" : "✗ Missing or incomplete"]
```
**Note:** All artifacts are discovered via globbing — no index files are required. ADRs and UX decisions are numbered independently and never share files.
## Minimal Output (if structure is sparse)
If only partial structure exists:
```markdown
## Blueprint Status
### Found
- docs/adrs/ (2 ADRs)
### Missing
- docs/specs/ - Run `/blueprint:onboard` to create
- patterns/ - Run `/blueprint:good-pattern` to add examples
- CLAUDE.md Documentation section
Run `/blueprint:onboard` to complete the setup.
```
## After Display
Offer helpful next actions based on what's missing or incomplete:
**Onboarding:**
- Partial onboarding? → "Run `/blueprint:onboard` to continue. Pending: [list pending sections]"
- No onboarding tracking? → "Run `/blueprint:onboard` to set up incremental tracking"
**ADRs:**
- No ADRs? → "Use `/blueprint:decide` to record your first architectural decision"
- Draft ADRs? → "These ADRs need refinement: [list]. Run `/blueprint:decide [topic]` to complete them"
**UX decisions:**
- No DESIGN.md but design tree exists? → "Use `/blueprint:onboard-design` to scaffold DESIGN.md when you want cross-cutting design rules"
- No UX decisions but design tree exists? → "Use `/blueprint:decide` (it triages — UX inputs land in `design/ux-decisions/`)"
- Draft UX decisions? → "These UX decisions need refinement: [list]"
**Patterns:**
- No patterns? → "Use `/blueprint:good-pattern` to capture an approved example (any subject)"
**Structure:**
- No boundaries? → "Consider adding `docs/specs/boundaries.md` with `/blueprint:onboard`"
## Examples
- `/blueprint:status` → Full overview
- "What decisions have we documented?" → Status with focus on ADRs
- "Is this repo set up for Blueprint?" → Quick structure check
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.