distributions/direct/example/feature-workflow-orchestrator/SKILL.md
End-to-end feature development orchestration from planning through deployment with quality gates
npx skillsauth add a-organvm/a-i--skills feature-workflow-orchestratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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:
development
Create algorithmic and generative art using mathematical patterns, noise functions, particle systems, and procedural generation. Covers flow fields, L-systems, fractals, and creative coding foundations. Triggers on generative art, algorithmic art, creative coding, procedural generation, or mathematical visualization requests.
development
Audits web applications and architectures for compliance with GDPR, CCPA, and other privacy regulations, focusing on consent, data minimization, and user rights.
development
Optimize Google Cloud Platform resource allocation and manage cloud credits efficiently. Use when planning GCP deployments, analyzing cloud spend, maximizing value from expiring credits, right-sizing instances, or designing cost-effective architectures. Triggers on GCP cost optimization, credit management, resource allocation planning, or cloud budget concerns.
testing
Designs engaging gameplay loops, economies, and progression systems, balancing challenge and reward for interactive experiences.