feature-development-workflow
3
总安装量
2
周安装量
#59088
全站排名
安装命令
npx skills add https://github.com/thapaliyabikendra/ai-artifacts --skill feature-development-workflow
Agent 安装分布
cursor
1
github-copilot
1
claude-code
1
Skill 文档
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
--impactflag)
Full Documentation
See .claude/commands/feature/add-feature.md for complete workflow documentation.