#skills
16 items tagged #skills.
16 items tagged #skills.
The anthropic-skills pack ships eight skills with Claude Code. Four handle documents. This is what triggers each one, where each earns its keep, and where you should reach for something else.
The brainstorming skill forces a design-first workflow in Claude Code: one question at a time, proposals with tradeoffs, and a committed spec before any code runs.
Claude Code's default failure mode is guessing at symptoms. The systematic-debugging skill enforces root-cause-first debugging: no fix until the cause is identified.
Plugin and skill are related but not interchangeable. A plugin is the installable package; a skill is the unit of behavior inside it. Getting the distinction right changes how you build, version, and share reusable workflows.
Claude Code's orchestrator routes tasks to skills by reading their descriptions. Here's exactly how that matching works, why competing descriptions cause routing failures, and how to fix them.
Claude Code reads a skill's description field to decide when to invoke it. A vague description means the skill never triggers; an overly broad one fires on everything. Here's how to write one that routes correctly.
Claude Code has two extension points: skills run inside the model's loop, hooks run in the harness around it. Knowing which to reach for determines whether your automation is reliable or just suggestive.
Skills shape how Claude Code thinks and works. MCP servers give it new tools to call. Confusing the two leads to building the wrong thing.
Claude Code skills are dynamically loaded behavior packages — only invoked when relevant. Here's why that matters and how the distribution model actually works.
Superpowers is a community skill pack for Claude Code that enforces a consistent workflow: brainstorm, plan, execute, review. Here's what each skill does and where the suite draws its own boundary.
Claude Code skips the failing-test step without enforcement. The TDD skill closes that gap by requiring a visible failing run before implementation is allowed to start.
A git-tracked shared skill library prevents duplicate work and knowledge loss when engineers leave. This guide covers repo structure, naming conventions, deprecation process, and CLAUDE.md as a skill index.
Claude Code's verification-before-completion skill enforces a simple rule: every 'done' claim must be backed by real output. No test runs summarized from memory. No lint passes assumed.
Claude Code skills let you encode repeatable workflows as prompt-driven commands. This guide walks through writing a real skill end to end—frontmatter, body, install, and debugging.