Language: 日本語English

feature-dev Plugin

Author
Anthropic
Category
Development
Topics
Claude Code Customization & Workflow · Code Quality, Review & Testing
First seen
2026-07-09
Last confirmed
2026-07-13
Explanation last updated
2026-07-12

The explanation below is AI-generated. Please verify it against the sources.

feature-dev is a Claude Code plugin that provides a structured, 7-phase workflow for developing new features, from discovery through implementation to quality review. It uses specialized sub-agents—code-explorer, code-architect, and code-reviewer—to analyze the existing codebase, design multiple architecture options, and review the resulting code for bugs and quality issues. The workflow is triggered with the /feature-dev command and pauses at key points (clarifying questions, architecture choice, implementation approval, review decisions) to wait for user input. According to the README, it is intended for features that touch multiple files or require architectural decisions, not for trivial fixes or hotfixes. The plugin is authored by Sid Bidasaria and is at version 1.0.0.

Overview

feature-dev is a plugin for Claude Code (not a standalone SaaS) that adds a /feature-dev command and three specialized agents (code-explorer, code-architect, code-reviewer) to guide feature development inside an existing codebase.

What you can do with feature-dev

  • Run /feature-dev [description] to start a guided 7-phase workflow: Discovery, Codebase Exploration, Clarifying Questions, Architecture Design, Implementation, Quality Review, and Summary
  • Automatically launch 2-3 code-explorer agents in parallel to trace similar features, architecture, and related implementations, returning key files and analyses
  • Receive multiple architecture options (Minimal changes, Clean architecture, Pragmatic balance) from code-architect agents, with a recommendation and trade-off comparison
  • Approve the chosen architecture before Claude implements the feature, following codebase conventions
  • Get code reviewed by 3 parallel code-reviewer agents focused on simplicity/DRY, correctness, and convention compliance, with confidence-scored issues and file:line references
  • Choose to fix issues now, fix later, or proceed as-is after the quality review
  • Manually invoke any of the three agents (code-explorer, code-architect, code-reviewer) outside the full workflow, e.g. "Launch code-explorer to trace how authentication works"
  • Receive a final summary listing what was built, key decisions, files modified, and suggested next steps

Sources

Original description (English)

Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review

History of feature-dev

Back to list