feature-development-workflow

feature-development-workflow is a skill for Claude Code from thapaliyabikendra/ai-artifacts. It costs 54 tokens per session (668 once invoked), scanned A, original, Apache-2.0.

A workflow for taking a feature from requirements through analysis, technical design, implementation, testing, and review. It coordinates separate agent roles and passes structured signals between dependent stages.

In plain words
What is it for?
Use it to plan and coordinate end-to-end feature development, from business requirements and permissions to implementation and security review.
Why use it?
It gives larger feature work a defined sequence and makes handoffs between planning, backend design, development, testing, and review clearer.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Use it to plan and coordinate end-to-end feature development, from business requirements and permissions to implementation and security review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thapaliyabikendra/ai-artifacts/feature-development-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add thapaliyabikendra/ai-artifacts --skill feature-development-workflow
Clone the repo
git clone --depth 1 https://github.com/thapaliyabikendra/ai-artifacts

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feature-development-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/feature-development-workflow/github.svg)](https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/feature-development-workflow)
Your own site
<a href="https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/feature-development-workflow"><img src="https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/feature-development-workflow/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feature-development-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/thapaliyabikendra/ai-artifacts/feature-development-workflow"><img src="https://agentmods.dev/badge/skills/thapaliyabikendra/ai-artifacts/feature-development-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 668 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.00668
Opus 5 $0.00027 $0.00334
Sonnet 5 $0.00011 $0.00134
Haiku 4.5 $0.00005 $0.00067

Measured 8d ago against content hash c6bb0c2606b6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

feature-development-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/feature-development-workflow/SKILL.md · 58 lines

How it starts

The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feature Development Workflow

For complete feature implementation, use the /add-feature command.

Quick Reference

Command Time Use Case
/add-feature <name> "<reqs>" --minimal ~2 min Simple CRUD, no docs
/add-feature <name> "<reqs>" --fast ~2.5 min Skip BA, requirements clear
/add-feature <name> "<reqs>" ~3 min Standard (progressive handoff)
/add-feature <name> "<reqs>" --full-review ~4.5 min With code + security review

Dependency Chain (Signal-Based)

BA(entity+perms) ─┬──→ [Architect + QA-Data] ──→ [Developer + QA-Tests]
🟢 ENTITY_READY   │    🟢 CONTRACTS_READY        (parallel implementation)
                  │
BA(reqs+rules) ───┘    (continues in background, non-blocking)

Signal Protocol: Agents emit signals (🟢 ENTITY_READY, 🟢 CONTRACTS_READY) to trigger dependent agents immediately.

Agent Roles

Stage Agent Trigger Output
Analyze business-analyst Start Entity definition, permissions, requirements
Design backend-architect 🟢 ENTITY_READY Technical design, interface contracts
Test Data qa-engineer 🟢 ENTITY_READY TestData.cs, Seeder.cs (parallel with Architect)
Implement abp-developer 🟢 CONTRACTS_READY Domain, Application, EF Core layers
Tests qa-engineer 🟢 CONTRACTS_READY Unit tests (parallel with Developer)
Review abp-code-reviewer Phase 2 complete Review report (optional)
Security security-engineer Phase 2 complete Security audit (optional)

Parallelism Optimizations

  • Phase 1b: Architect + QA-Data run in parallel (on ENTITY_READY)
  • Phase 2: Developer + QA-Tests run in parallel (on CONTRACTS_READY)
  • BA secondary outputs: Non-blocking (requirements.md, business-rules.md)
  • Skipped by default: ANALYSIS.md, impact-analysis.md (use --impact flag)

Full Documentation

See .claude/commands/feature/add-feature.md for complete workflow documentation.

Read the full file on GitHub · 58 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 58 lines · 54 tokens per session scan A c6bb0c2606b6

Subscribe to this mod's changes

feature-development-workflow is a skill published in the GitHub repository thapaliyabikendra/ai-artifacts (24 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 54 tokens to every session and 668 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.