From example-skills
Orchestrates end-to-end feature development from planning and design through implementation, testing, review, and deployment with quality gates, TDD cycles, git branching, and PR checklists.
How this skill is triggered — by the user, by Claude, or both
Slash command
/example-skills:feature-workflow-orchestratorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Complete workflow for feature development from concept to production.
Complete workflow for feature development from concept to production.
┌──────────────────────────────────────────────────┐
│ │
│ PLAN → DESIGN → IMPLEMENT → TEST → REVIEW │
│ ↓ ↓ ↓ ↓ ↓ │
│ Scope Arch Code+Tests QA PR+Deploy │
│ │
└──────────────────────────────────────────────────┘
# Feature: [Name]
## Problem Statement
What problem does this solve?
## User Stories
- As a [role], I want to [action], so that [benefit]
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
## Technical Considerations
- Dependencies
- Performance requirements
- Security concerns
## Success Metrics
- Metric 1: Target value
- Metric 2: Target value
## Architecture Decision: [Title]
**Context**: What necessitates this decision
**Options**:
1. Option A - Pros/Cons
2. Option B - Pros/Cons
**Decision**: Chosen approach
**Consequences**: Impact on codebase
# Create feature branch
git checkout -b feature/user-authentication
# Regular commits
git commit -m "feat(auth): add login endpoint"
git commit -m "test(auth): add login tests"
git commit -m "docs(auth): update API docs"
# Run verification loop
npm run build
npm run type-check
npm run lint
npm test -- --coverage
npm run security-scan
# Merge to main after approval
git checkout main
git merge --no-ff feature/user-authentication
# Tag release
git tag -a v1.2.0 -m "Release v1.2.0: Add user authentication"
git push origin v1.2.0
Complements:
npx claudepluginhub organvm/a-i--skills --plugin coliseum-from-grainOrchestrates the full feature development pipeline from interview-to-spec through TDD, verification, and review. Thin dispatcher that hands off to downstream skills.
Feature Development Loop. Goal: ship one new user-facing feature per iteration, fully behind the quality gate.