Workflows
Slash command procedures for common development tasks.
What are Workflows?
Workflows are well-defined, step-by-step procedures for achieving specific development tasks. They're invoked using slash commands and provide consistent, repeatable processes.
Each workflow contains specific instructions, decision points, and best practices for its domain.
How to Use Workflows
Simply type a slash command followed by your task description:
/brainstorm authentication system
/create landing page with hero section
/debug why login fails Tip: Some workflows have a // turbo annotation that allows auto-running safe commands without user approval.
Available Workflows
11 workflows covering common development scenarios:
/brainstormSocratic discovery
/brainstorm [args]/createCreate new features
/create [args]/debugDebug issues
/debug [args]/deployDeploy application
/deploy [args]/enhanceImprove existing code
/enhance [args]/orchestrateMulti-agent coordination
/orchestrate [args]/planTask breakdown
/plan [args]/previewPreview changes
/preview [args]/statusCheck project status
/status [args]/testRun tests
/test [args]/ui-ux-pro-maxDesign with 50 styles
/ui-ux-pro-max [args]Creating Custom Workflows
You can create your own workflows by adding markdown files to .agent/workflows/:
---
description: Deploy application to staging
---
# Deployment Workflow
1. Run tests
2. Build production bundle
3. Deploy to staging server
4. Verify deploymentSave as .agent/workflows/deploy-staging.md and invoke with /deploy-staging.