skill-architect
Design, create, audit, and improve Claude Agent Skills with expert-level progressive disclosure. Use when building new skills, reviewing existing skills, debugging activation failures, encoding domain expertise, designing skills for subagent consumption, or understanding platform constraints and distribution surfaces. NOT for general Claude Code features, runtime debugging, non-skill coding, or MCP server implementation.
What this skill does
# Skill Architect: The Authoritative Meta-Skill The unified authority for creating expert-level Agent Skills. Encodes the knowledge that separates a skill that *merely exists* from one that *activates precisely, teaches efficiently, and makes users productive immediately*. ## Philosophy **Great skills are progressive disclosure machines.** They encode real domain expertise (shibboleths), not surface instructions. They follow a three-layer architecture: lightweight metadata for discovery, lean SKILL.md for core process, and reference files for deep dives loaded only on demand. --- ## When to Use This Skill ✅ **Use for**: - Creating new skills from scratch or from existing expertise - Auditing/reviewing skills for quality, activation, and progressive disclosure - Improving activation rates and reducing false positives - Encoding domain expertise (shibboleths, anti-patterns, temporal knowledge) - Designing skills that subagents consume effectively - Building self-contained tools (scripts, MCPs, subagents) - Debugging why skills don't activate or activate incorrectly ❌ **NOT for**: - General Claude Code features (slash commands, MCP server implementation) - Non-skill coding advice or code review - Debugging runtime errors (use domain-specific skills) - Template generation without real domain expertise to encode --- ## Quick Wins (Immediate Improvements) For existing skills, apply in priority order: 1. **Tighten description** → Follow `[What] [When to use]. NOT for [Exclusions]` formula 2. **Check line count** → SKILL.md must be <500 lines; move depth to `/references` 3. **Add NOT clause** → Prevent false activation with explicit exclusions 4. **Add 1-2 anti-patterns** → Use shibboleth template (Novice/Expert/Timeline) 5. **Remove dead files** → Delete unreferenced files in `scripts/` and `references/` (no phantoms) 6. **Test activation** → Write 5 queries that should trigger and 5 that shouldn't --- ## Progressive Disclosure Architecture Skills use three-layer loading. The runtime scans metadata at startup, loads SKILL.md on activation, and pulls reference files *only when the agent decides it needs them*. | Layer | Content | Size | Loading | |-------|---------|------|---------| | 1. Metadata | `name` + `description` in frontmatter | ~100 tokens | Always in context (catalog scan) | | 2. SKILL.md | Core process, decision trees, brief anti-patterns | <5k tokens | On skill activation | | 3. References | Deep dives, examples, templates, specs | Unlimited | On-demand, per-file, only when relevant | **Critical rules**: - Keep SKILL.md under 500 lines. Move depth to `/references`. - Reference files are NOT auto-loaded. Only SKILL.md enters context on activation. - In SKILL.md, list each reference file with a 1-line description of when to consult it. This teaches the agent what's available without loading it. - Never instruct "read all reference files before starting." Instead: "Read only the files relevant to the current step." - If a reference file is large, the agent should skim headings first, then drill into the relevant section. --- ## Frontmatter Rules ### Required Fields | Key | Purpose | Constraints | |-----|---------|-------------| | `name` | Lowercase-hyphenated identifier | Max 64 chars, a-z/0-9/hyphens only, no "anthropic" or "claude", no XML tags | | `description` | Activation trigger: `[What] [When to use]. NOT for [Exclusions]` | Max 1024 chars, no XML tags. See Description Formula | ### Optional Fields | Key | Purpose | Example | |-----|---------|---------| | `allowed-tools` | Comma-separated tool names (least privilege) | `Read,Write,Grep` | | `argument-hint` | Hint shown in autocomplete for expected arguments | `"[path] [format]"` | | `license` | License identifier | `MIT` | | `disable-model-invocation` | If `true`, only user-triggered via `/skill-name` | `true` | | `user-invocable` | Controls whether skill appears in UI menus | `true` | | `context` | Execution context; `fork` runs skill in isolated subagent | `fork` | | `agent` | Which subagent type when `context: fork` | `code-reviewer` | | `model` | Override model when skill is active | `sonnet` | | `hooks` | Hooks scoped to this skill's lifecycle | See hooks reference | | `metadata` | Arbitrary key-value map for tooling/dashboards | `author: your-org` | | `dependencies` | Required packages for scripts | `python>=3.8, pandas>=1.5.0` | | `bundled-resources` | Declared resource files | (list of paths) | | `distribution` | Distribution method | `npm`, `pip`, `zip` | **Note**: The Skills API uses hyphenated variants (`context-fork`, `model-override`). Claude Code uses the names shown above. ### Custom Keys (Safe to Use) Custom keys like `category`, `tags`, `version` are **ignored by Claude Code** but safe to include for your own tooling (gallery websites, documentation generators, dashboards). They don't conflict with runtime parsing. ### Invalid Keys (Confusingly Similar to Valid Ones) ```yaml # ❌ These look like valid keys but aren't — use the correct alternatives tools: Read,Write # Use 'allowed-tools' instead integrates_with: [...] # Use SKILL.md body text instead outputs: [...] # Use SKILL.md Output Format section instead python_dependencies: [...] # Use 'dependencies' in frontmatter instead ``` --- ## Platform Constraints | Constraint | Limit | |------------|-------| | Name length | 64 characters | | Name format | Lowercase letters, numbers, hyphens only | | Reserved words in name | "anthropic", "claude" prohibited | | Description length | 1024 characters | | Total skill upload size | 8MB (API and claude.ai) | | Skills per API request | 8 maximum | | XML tags in name/description | Prohibited | **Cross-surface behavior**: Skills do NOT sync across Claude.ai, Claude API, and Claude Code. Each surface requires separate upload/management. Maintain source files in Git as single source of truth. **Recall limits**: Too many active skills degrades Claude's selection accuracy. Test coexistence when adding new skills — verify the new skill doesn't steal triggers from existing ones. --- ## Description Formula **Pattern**: `[What it does] [When to use — be slightly pushy]. NOT for [Exclusions].` The description is the most important line for activation. Claude's runtime scans descriptions to decide which skill to load. A weak description means zero activations or constant false positives. **How activation works**: Claude evaluates descriptions **semantically**, not via keyword matching. It reasons about whether your description covers the user's intent. This means specific, context-rich descriptions outperform keyword lists. Claude also tends to **undertrigger** — it errs toward NOT activating skills. Combat this by making descriptions slightly pushy: explain when the skill should be used, even if it seems obvious. | Problem | Bad | Good | |---------|-----|------| | Too vague | "Helps with images" | "CLIP semantic search for image-text matching and zero-shot classification. NOT for counting, spatial reasoning, or generation." | | No exclusions | "Reviews code changes" | "Reviews TypeScript/React diffs and PRs for correctness. NOT for writing new features." | | Mini-manual | "Researches, then outlines, then drafts..." | "Structured research producing 1-3 page synthesis reports. NOT for quick factual questions." | | Catch-all | "Helps with product management" | "Writes and refines product requirement documents (PRDs). NOT for strategy decks." | | Name mismatch | name: `db-migration` / desc: "writes marketing emails" | name: `db-migration` / desc: "Plans database schema migrations with rollback strategies." | **Full guide with more examples**: See `references/description-guide.md` --- ## SKILL.md Template ```markdown --- name: your-skill-name description: [What it does] [When to use — be slightly pushy]. NOT for [Exclusions]. allowed-tools: Read,Write --- # Skill Name [One sentence purpose] ## When to Use ✅ Use for: [A, B,
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.