Showing 28 verified skills. 284 preview entries are hidden until we confirm a real source. Show preview skills · Why?
Develop complete features with automated architecture, testing, and review
claude install anthropics/claude-code/feature-devEnd-to-end feature development workflow: understand the codebase, plan architecture, implement, test, review, and document in parallel agent phases.
This is the actual SKILL.md file that powers this skill. Copy it to install.
---
name: feature-dev
description: |
Trigger when the user asks to build a feature, implement a story, or do
end-to-end development work. Phrases: "build", "implement", "add feature",
"new feature", "develop", "create functionality".
allowed-tools:
- Bash(command *)
- Read
- Write
- Edit
- Glob
- Grep
---
# Feature Dev
End-to-end feature development using a structured 7-phase approach with
parallel exploration and review agents.
## Prerequisites
- Git repository initialized
- Project dependencies installed
## Steps
1. **Understand** - Read the request carefully. Use Grep and Glob to explore
the codebase and understand existing patterns, conventions, and architecture.
2. **Plan** - Write a brief plan as a checklist:
- Which files need to change?
- What new files are needed?
- What tests should be added?
- Are there migration or config changes?
3. **Explore dependencies** - Before writing code, read every file that will be
imported by or will import your new code. Understand interfaces, types,
and data flow.
4. **Implement** - Write the code following existing project conventions:
- Match the style of surrounding code (naming, formatting, patterns)
- Add types for all public interfaces
- Handle errors explicitly
- Keep functions small and focused
5. **Test** - Write tests alongside the implementation:
- Unit tests for pure logic
- Integration tests for API/database interactions
- Run the test suite: `npm test` or equivalent
6. **Verify** - Run linters, type checkers, and build:
- `npm run lint` / `npm run typecheck` / `npm run build`
- Fix any issues found
7. **Review** - Re-read all changed files as if reviewing a PR:
- Check for missed edge cases
- Verify error handling
- Ensure no debug code or TODOs remain
- Confirm the feature matches the original request
mkdir -p ~/.claude/skills/feature-dev~/.claude/skills/feature-dev/SKILL.mdResulting file structure:
~/.claude/
skills/
feature-dev/
SKILL.md <-- skill definitionSkills are loaded automatically by Claude Code when you start a new session. The skill name and description in the frontmatter determine when Claude triggers it.
Recommended from shared domain, career, and tool overlap with Feature Dev
Query databases, inspect schemas, and explore data from your AI editor
Both used by Software Engineer
Inspect Redis keys, TTLs, and cache hit rates from your AI editor
Both used by Software Engineer
Query Sentry errors and analyze stack traces from your AI editor
Both used by Software Engineer
Manage Stripe payments and subscriptions from your AI assistant
Both used by Software Engineer
Manage Supabase databases, auth, and storage from your editor
Both used by Software Engineer
Control a browser from your AI editor - navigate, screenshot, interact
Both used by Software Engineer
Feature Dev