Development Workflows¶
Patterns for using the dev-suite agents and hub skills in software development.
Note
Since v3.1.0, skills use a two-tier Hub Skill architecture. The hub skills listed below route to specialized sub-skills via their Routing Decision Tree. You invoke the hub; it dispatches to the right sub-skill automatically.
Feature Development¶
The standard feature workflow uses @software-architect for design and
@app-developer for implementation.
Design the API contract (hub:
backend-patterns→ sub:api-design-principles).Scaffold the project structure (skill:
engineering-suite:scaffold).Implement backend logic (hub:
architecture-and-infra→ sub:architecture-patterns).Build the frontend (hub:
frontend-and-mobile→ sub:frontend-mobile-engineering).Write tests (hub:
testing-and-quality→ sub:javascript-testing-patternsorpython-testing-patterns).Validate with
/double-check.
Agent team: Use Team 27 (feature-dev) for multi-agent feature development with review gates.
Code Quality Pipeline¶
Maintain code quality with the dev-suite agents.
# Generate tests for new code
/dev-suite:test-generate src/new_module.py
# Run all tests iteratively until green
/dev-suite:run-all-tests
# Full validation before merge
/dev-suite:double-check --deep
Agent team: Use Team 3 (quality-audit) for pre-release quality gates.
Legacy Modernization¶
Modernize legacy codebases with the Strangler Fig pattern.
Analyze the existing codebase (command:
/adopt-code).Plan the migration strategy (command:
/modernize).Implement incrementally with backward compatibility.
Validate each phase with
/double-check.
Agent team: Use Team 6 (modernization) for coordinated migration.