feature-dev
Guide a feature implementation through a structured seven-phase workflow with deep codebase understanding, clarifying questions, parallel architecture design, and quality review. Use this skill when the user asks to build a new feature, add functionality, or wants a methodical approach to implementation rather than diving straight to code.
pinned to #97d96beupdated 2 weeks ago
Ask your AI client: “install skills/feature-dev”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/feature-devmetahub onboarded this repo on the author's behalf.
If you own github.com/waybarrios/opencode-power-pack on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
426
Last commit
2 weeks ago
Latest release
published
- #ai-agents
- #anthropic
- #claude-code
- #code-review
- #developer-tools
- #llm-tools
- #opencode
- #plugin
- #security-audit
- #skills
About this skill
Pulled from SKILL.md at publish time.
Help a developer implement a new feature systematically. Understand the codebase deeply, identify and ask about underspecified details, design elegant architectures, then implement.
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.97d96be· 2 weeks ago
Kind-specific
31Skill: SKILL.md present
found at skills/feature-dev/SKILL.md · frontmatter source: SKILL.md
Skill: body content present
730 words · 4,906 chars · 9 sections
Skill: triggers declaredwarn
No `trigger` phrases in SKILL.md frontmatter
Add `trigger:` lines so Claude knows when to activate this skill — e.g. `when building MCP servers` or `for diagram creation`.
Skill: allowed-tools scope
no allowed-tools restriction (Claude may use anything)
Release history
1- releasecurrent97d96bewarn2 weeks ago
Contents
Help a developer implement a new feature systematically. Understand the codebase deeply, identify and ask about underspecified details, design elegant architectures, then implement.
Core principles
- Ask clarifying questions — Identify ambiguities, edge cases, and underspecified behaviors. Ask specific, concrete questions rather than making assumptions. Wait for user answers before proceeding.
- Understand before acting — Read and comprehend existing code patterns first.
- Read files identified by sub-tasks — When dispatching code-explorer sub-tasks, ask them to return lists of the most important files to read. After they complete, read those files yourself to build detailed context.
- Simple and elegant — Prioritize readable, maintainable, architecturally sound code.
- Track progress — Use a todo list throughout.
Working discipline
These bias toward caution over speed — use judgment on trivial tasks.
- Think before acting — state assumptions; if the request has more than one reading, surface them instead of silently choosing; if a simpler path exists, say so.
- Simplicity first — the minimum that solves the problem; no speculative features, abstractions, configurability, or handling of impossible cases.
- Surgical changes — touch only what the task needs; do not refactor or restyle adjacent code; match existing style; clean up only the orphans your change created, and mention unrelated dead code rather than deleting it.
- Goal-driven — turn the task into a concrete success check and iterate until it passes.
Phase 1: Discovery
Goal: Understand what needs to be built.
- Create a todo list covering all seven phases.
- If the feature is unclear, ask the user:
- What problem are they solving?
- What should the feature do?
- Any constraints or requirements?
- Summarize your understanding and confirm with the user before proceeding.
Phase 2: Codebase exploration
Goal: Understand relevant existing code at both high and low levels.
- Dispatch 2–3
code-explorersub-tasks in parallel. Each should:- Trace through the code comprehensively, focusing on abstractions, architecture, and control flow.
- Target a different aspect (similar features, high-level architecture, UX, extension points).
- Return a list of 5–10 key files to read.
- After they return, read every file they identified to build deep understanding.
- Present a comprehensive summary of findings and patterns to the user.
Phase 3: Clarifying questions
Goal: Fill gaps and resolve ambiguities before designing.
This is one of the most important phases. Do not skip.
- Review the codebase findings and the original feature request.
- Identify underspecified aspects: edge cases, error handling, integration points, scope boundaries, design preferences, backward compatibility, performance.
- Present all questions to the user as a clear, organized list.
- Wait for answers before moving to architecture.
If the user says "whatever you think is best", make your recommendation explicit and get confirmation.
Phase 4: Architecture design
Goal: Design multiple implementation approaches with different trade-offs.
- Dispatch 2–3
code-architectsub-tasks in parallel, each with a different focus:- Minimal changes — smallest diff, maximum reuse of existing code.
- Clean architecture — maintainability, elegant abstractions.
- Pragmatic balance — speed plus quality.
- Review all approaches and form an opinion on which fits best for this task. Consider scope (small fix vs. large feature), urgency, complexity, and team context.
- Present to the user: a brief summary of each approach, a trade-offs comparison, your recommendation with reasoning, and concrete differences in implementation.
- Ask the user which approach they prefer.
Phase 5: Implementation
Goal: Build the feature.
Do not start without explicit user approval.
- Wait for approval.
- Re-read all relevant files identified earlier.
- Implement following the chosen architecture.
- Strictly follow codebase conventions (naming, style, error-handling patterns).
- Update todos as you progress.
Phase 6: Quality review
Goal: Ensure the code is simple, DRY, elegant, readable, and correct.
- Dispatch 3
code-reviewersub-tasks in parallel, each with a different focus:- Simplicity / DRY / elegance
- Bugs / functional correctness
- Project conventions and abstractions
- Consolidate findings and rank issues by severity.
- Present findings to the user and ask what they want to do (fix now, fix later, proceed as-is).
- Address issues based on their decision.
Phase 7: Summary
Goal: Document what was accomplished.
- Mark all todos complete.
- Summarize:
- What was built
- Key decisions made
- Files modified
- Suggested next steps
Reviews
No reviews yet. Be the first.
Related
orchestration-patterns
>
migration-patterns
>
deployment-sop
>
mh install skills/feature-dev