Version: 1.0.0 Last Updated: 2026-02-05 Status: Official Documentation
This folder contains detailed documentation of all AIOX workflows, including:
- Complete Mermaid diagrams (flowchart, sequence, state)
- Detailed steps with inputs/outputs
- Participating agents and their roles
- Decision points and conditions
- Prerequisites and configurations
- Troubleshooting and execution modes
| Type | Workflow | Description | Document |
|---|---|---|---|
| Greenfield | Fullstack | Full-stack applications from scratch | greenfield-fullstack-workflow.md |
| Greenfield | Service | Backend/API from scratch | greenfield-service-workflow.md |
| Greenfield | UI | Frontend from scratch | greenfield-ui-workflow.md |
| Brownfield | Discovery | Existing project analysis | brownfield-discovery-workflow.md |
| Brownfield | Fullstack | Existing full-stack evolution | brownfield-fullstack-workflow.md |
| Brownfield | Service | Existing backend evolution | brownfield-service-workflow.md |
| Brownfield | UI | Existing frontend evolution | brownfield-ui-workflow.md |
| Process | Workflow | Description | Document |
|---|---|---|---|
| Development | Story Cycle | Complete story cycle | story-development-cycle-workflow.md |
| Quality | QA Loop | Quality cycle | qa-loop-workflow.md |
| Spec | Spec Pipeline | Specification pipeline | spec-pipeline-workflow.md |
| Design | Design System | Design system construction | design-system-build-quality-workflow.md |
| Git | Auto Worktree | Automatic worktree management | auto-worktree-workflow.md |
Each workflow document follows this standard structure:
1. Overview
- Workflow objective
- Supported project types
- When to use / not use
2. Mermaid Diagram
- Main flowchart
- State diagram
- Sequence diagram
3. Detailed Steps
- ID, agent, action
- Inputs and outputs
- Success criteria
- Status transitions
4. Participating Agents
- Role of each agent
- Relevant commands
5. Executed Tasks
- Task map by phase
- Task files
6. Prerequisites
- Required configuration
- Prerequisite documentation
- Integrated tools
7. Inputs and Outputs
- Workflow inputs
- Produced outputs
8. Decision Points
- Branching conditions
- Blocking criteria
9. Execution Modes
- YOLO (autonomous)
- Interactive (balanced)
- Pre-Flight (planning)
10. Troubleshooting
- Common problems
- Logs and diagnostics
11. Changelog
- Version history
flowchart TB
subgraph GREENFIELD["Greenfield (New Projects)"]
GF["greenfield-fullstack"]
GS["greenfield-service"]
GU["greenfield-ui"]
end
subgraph BROWNFIELD["Brownfield (Existing Projects)"]
BD["brownfield-discovery"]
BF["brownfield-fullstack"]
BS["brownfield-service"]
BU["brownfield-ui"]
end
subgraph PROCESS["Processes"]
SDC["story-development-cycle"]
QAL["qa-loop"]
SP["spec-pipeline"]
DSB["design-system-build"]
AW["auto-worktree"]
end
BD --> BF
BD --> BS
BD --> BU
GF --> SDC
GS --> SDC
GU --> SDC
BF --> SDC
BS --> SDC
BU --> SDC
SDC --> QAL
SP --> SDC
style GREENFIELD fill:#c8e6c9
style BROWNFIELD fill:#fff9c4
style PROCESS fill:#e3f2fd
flowchart TD
A{Project Type?} --> B[Full-Stack]
A --> C[Backend/API Only]
A --> D[Frontend Only]
B --> E[greenfield-fullstack]
C --> F[greenfield-service]
D --> G[greenfield-ui]
flowchart TD
A{Know the Project?} --> |No| B[brownfield-discovery]
A --> |Yes| C{Type of Change?}
B --> C
C --> D[Full-Stack]
C --> E[Backend Only]
C --> F[Frontend Only]
D --> G[brownfield-fullstack]
E --> H[brownfield-service]
F --> I[brownfield-ui]
| From | To | Condition |
|---|---|---|
brownfield-discovery |
brownfield-* |
After complete analysis |
greenfield-* |
story-development-cycle |
For each story |
brownfield-* |
story-development-cycle |
For each story |
spec-pipeline |
story-development-cycle |
After spec approved |
story-development-cycle |
qa-loop |
In QA phase |
- Use the Selection Guide above to choose the workflow
- Read the Overview of the chosen workflow
- Check the Prerequisites
- Follow the Steps in order
- Analyze the Mermaid Diagrams
- See the Participating Agents and their roles
- Consult the Decision Points
- Go to the Troubleshooting section
- Check Logs and Diagnostics
- Consult the Success Criteria of each step
| Documentation | Location | Purpose |
|---|---|---|
| Workflows Guide | docs/guides/workflows-guide.md | General guide |
| Agent Flows | docs/aiox-agent-flows/ | Agent details |
| Meta-Agent Commands | docs/meta-agent-commands.md | Quick reference |
To add or update workflow documentation:
- Follow the standard structure described above
- Include complete Mermaid diagrams
- Document all inputs/outputs
- Keep the changelog updated
- Create translations in EN and ES
AIOX Workflows Documentation v1.0 - Detailed documentation of development workflows