taxonomy-design
Design a taxonomy / controlled vocabulary for content or data. Produces term list with definitions, parent-child hierarchy (or flat / faceted), synonyms and related terms, usage rules, scope notes, versioning, and governance. Supports hierarchical, faceted, and polyhierarchical structures.
What this skill does
# Taxonomy Design
You design a taxonomy — a controlled vocabulary with defined terms, relationships, and usage rules — that makes content / data findable, classifiable, and consistent.
## Core rules
- **Terms defined**: every term has a scope note (what it covers) and scope exclusions (what it does NOT cover)
- **Hierarchy explicit**: parent-child where hierarchical; no implicit relationships
- **Synonyms tracked**: "use-for" (USE) and "use" (UF) relationships prevent terminology drift
- **Governance declared**: who adds / changes / retires terms
- **Versioning**: every taxonomy change gets a version; consumers can pin
- **User language grounded**: terms should match user vocabulary, not internal jargon
- **No fabricated terms**: don't invent terms without source evidence or explicit `[Proposed]` label
## Input handling
| Dimension | Required | Default |
|---|---|---|
| **Domain / content scope** | Yes | — |
| **Structure type** | No | Hierarchical (default) |
| **Existing vocabulary** | No | Elicit |
| **User research** (interviews, search logs, card sorts) | No | Flag as `[Assumed user vocabulary]` if absent |
| **Use cases** (navigation, search, filtering, content tagging, data modeling) | No | All |
## Phase 1 — Setup
```
**Domain**: [e.g., content library, product catalog, user-generated content, support articles]
**Structure type**: [hierarchical / flat / faceted / polyhierarchical]
**Existing vocabulary**: [terms count or "greenfield"]
**Use cases**: [navigation / search / filter / tagging / data]
**Grounding**: [user research summary or "assumed"]
```
Ask render mode per `diagram-rendering` mixin and output path (default: `/documentation/[case]/taxonomy-design/`).
## Phase 2 — Structure selection
| Structure | Use when | Example |
|---|---|---|
| **Hierarchical (tree)** | Clear parent-child relationships; content has single primary classification | Encyclopedia, filesystem, org chart |
| **Flat** | Small vocabulary; no natural hierarchy | Tag cloud, content types |
| **Faceted** | Multiple independent dimensions; filter by combinations | E-commerce (category × brand × price × color × size) |
| **Polyhierarchical** | Items legitimately belong to multiple parents | Cross-disciplinary content (e.g., "machine learning" under both CS and Stats) |
| **Network / ontology** | Complex semantic relationships beyond parent-child | Knowledge graphs, ontologies |
Pick the simplest that fits. Faceted beats hierarchical for most e-commerce / search.
## Phase 3 — Term definition
Per term:
| Field | Description |
|---|---|
| **ID** | Stable (`T-001`, ...) |
| **Term** | Preferred label |
| **Scope note** | What it covers (1–2 sentences) |
| **Scope exclusion** | What it does NOT cover (explicit) |
| **Parents** | Broader terms (or "root") |
| **Children** | Narrower terms |
| **Synonyms (UF — "use for")** | Alternate forms that should not be used; pointer to this term |
| **Related terms (RT)** | Peer terms with semantic connection (no hierarchy) |
| **Usage rules** | Where used (content field / nav / filter / API), how many terms can apply |
| **Examples** | 2–3 items that use this term |
| **Status** | active / deprecated (with migration target) / proposed |
| **Added in** | Version |
Rules:
- Term label: noun / noun phrase (not verb); singular preferred for most contexts
- Scope note mandatory; vague terms create inconsistent usage
- Synonyms ("USE X for Y") prevent drift
## Phase 4 — Relationship types
| Relationship | Symbol | Description |
|---|---|---|
| **BT (Broader Term)** | T → parent | "Laptops" BT "Computers" |
| **NT (Narrower Term)** | T ← child | "Computers" NT "Laptops" |
| **RT (Related Term)** | T ↔ peer | "Laptops" RT "Accessories" (non-hierarchical association) |
| **UF (Use For)** | T USE alt | "Laptops" UF "Notebook computers" |
| **USE** | alt → T | "Notebook computers" USE "Laptops" |
Faceted taxonomies: each facet is its own mini-hierarchy. Polyhierarchical: term has multiple BTs (allowed only if genuinely belonging to multiple parents).
## Phase 5 — Faceted design (if applicable)
For faceted structure:
| Facet | Dimension | Values | Max per item |
|---|---|---|---|
| Category | Product type | Laptop / Phone / Tablet / ... | 1 |
| Brand | Manufacturer | Apple / Samsung / ... | 1 |
| Price band | Economic tier | <100 / 100-500 / >500 | 1 |
| Color | Primary hue | Black / Silver / Gold / ... | 1–2 |
| Feature | Functional tag | 5G / Waterproof / ... | many |
Rules:
- Each facet orthogonal (doesn't overlap with another)
- Values within a facet mutually exclusive or multi-select declared
- Facet order matters for UI (most-used first)
## Phase 6 — Governance
| Aspect | Declaration |
|---|---|
| **Owner** | Role / person responsible for the taxonomy |
| **Change process** | Who proposes / who approves / lead time |
| **Deprecation policy** | How long terms stay available after retirement + redirect |
| **Review cadence** | Quarterly / annual |
| **Versioning** | Semver or date-based |
| **Consumer notification** | How changes communicated (CHANGELOG, API deprecation) |
Taxonomy without governance drifts within a year. Non-negotiable.
## Phase 7 — Usability validation checks
- **Findability**: can a user find the right term for a concept? (card-sort or tree-test if data supplied)
- **Coverage**: do all content items fit at least one term? (cross-check with `content-inventory-audit`)
- **Balance**: no child category with 100× more items than siblings (re-partition needed)
- **Depth**: hierarchy ≤ 5 levels typical (>5 signals over-categorization)
- **Breadth**: no parent with > 15 children (consider intermediate grouping)
Flag violations with recommendations.
## Phase 8 — Versioning & CHANGELOG
First version: `v0.1.0` (greenfield) or `v1.0.0` (stable).
Per release document:
- **Added** — new terms
- **Changed** — label / scope / parent changes
- **Deprecated** — retired with migration target
- **Removed** — fully gone (only after deprecation period)
Consumer contract: pin to version; upgrade explicitly.
## Phase 9 — Diagrams
### 1. Hierarchy tree
```mermaid
flowchart TD
R[Root]
R --> T1["T-001 Laptops"]
R --> T2["T-002 Phones"]
R --> T3["T-003 Tablets"]
T1 --> T4["T-004 Business"]
T1 --> T5["T-005 Consumer"]
T1 --> T6["T-006 Gaming"]
```
### 2. Facet overview (if faceted)
Mermaid flowchart showing facets as parallel lanes.
### 3. Term usage heatmap (if data supplied)
```mermaid
xychart-beta
title "Items per term (top 10)"
x-axis ["Laptops", "Phones", "Accessories", "Tablets", "Monitors", "Software", "Services", "Gaming", "Business", "Audio"]
y-axis "Count" 0 --> 500
bar [420, 380, 250, 180, 120, 95, 80, 75, 60, 40]
```
## Phase 10 — Diagram rendering
Per `diagram-rendering` mixin. File names:
- `taxonomy-tree.mmd` / `.png`
- `facets.mmd` / `.png` (if faceted)
- `term-usage.mmd` / `.png` (if data)
## Phase 11 — Report assembly and approval
```markdown
# Taxonomy Design: [Domain]
**Date**: [date]
**Domain**: [name]
**Structure**: [hierarchical / flat / faceted / polyhierarchical]
**Version**: [v0.1.0 or ...]
**Term count**: [N]
## Scope
[Domain, structure, use cases, grounding]
## Structure
[Chosen structure + rationale]
## Terms
[Full table per term with BT/NT/RT/UF/USE + usage rules + examples + status]
## Facets (if faceted)
[Facet × values × cardinality]
## Relationships
[Hierarchy + non-hierarchical associations]
## Governance
[Owner + change process + deprecation + review + versioning]
## Usability Validation
[Findability / coverage / balance / depth / breadth checks]
## Versioning & CHANGELOG
[Current version + migration notes]
## Diagrams
[Tree + facets + usage if data]
## Assumptions & Limitations
[`[Assumed user vocabulary]` items, research gaps]
```
Present for user approval. Save only after confirmation.
## Generation + planning rules
- Terms defined with scope + exclusions
- Relationships typed (BT / NT / RT / UF / USE)
- GovernaRelated 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.