Workflow Reference
AGEN includes 8 workflows - predefined task automations that can be invoked with slash commands in supported IDEs.
How Workflows Work
Workflows are Markdown files with YAML frontmatter containing:
- description: What the workflow does
- Content: Instructions executed when the workflow is invoked
Workflows are invoked using slash commands (e.g., /orchestrate, /deploy).
Available Workflows
/orchestrate
Purpose: Coordinate multiple agents for complex tasks.
Invokes the multi-agent orchestration system to:
- Analyze task domains (security, frontend, backend, etc.)
- Select 3+ appropriate specialist agents
- Execute agents in parallel or sequence
- Synthesize results into a unified report
Usage:
Key Features: - Minimum 3 agents required - Two-phase approach: Planning → Implementation - User approval checkpoint between phases - Verification scripts run at the end
/deploy
Purpose: Execute deployment procedures.
Guides through deployment process:
- Pre-deployment checklist
- Environment validation
- Build and package
- Deployment execution
- Post-deployment verification
Usage:
/plan
Purpose: Create structured project plans.
Generates a PLAN.md file with:
- Problem statement
- Requirements analysis
- Technical approach
- Milestones and deliverables
- Risk assessment
Usage:
/brainstorm
Purpose: Ideation and solution exploration.
Facilitates creative problem-solving:
- Problem decomposition
- Alternative approaches
- Pros/cons analysis
- Recommendation
Usage:
/status
Purpose: Check project status and health.
Reports on:
- Installed agents and skills
- Configuration health
- Pending updates
- Recommendations
Usage:
/preview
Purpose: Preview changes before applying.
Shows what would change without making modifications:
- Files that would be created
- Files that would be modified
- Potential conflicts
Usage:
/enhance
Purpose: Improve existing code.
Applies best practices and improvements:
- Code quality enhancements
- Performance optimizations
- Accessibility improvements
- Documentation additions
Usage:
/ui-ux-pro-max
Purpose: Advanced UI/UX design workflow.
Comprehensive design process:
- Deep design thinking
- Style commitment
- Layout diversification
- Animation and effects
- Quality verification
Key Constraints: - Purple is forbidden as primary color - No default UI libraries without asking - No standard/cliché designs - Mandatory animations and visual depth
Usage:
Workflow Files Location
After installation, workflows are located at:
Creating Custom Workflows
You can create custom workflows by adding Markdown files to .agent/workflows/:
---
description: My custom workflow description
---
# My Custom Workflow
Instructions for the AI to follow when this workflow is invoked.
## Steps
1. First step
2. Second step
3. Third step
Custom workflows are automatically discovered and can be invoked using /<filename>.