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
13 workflows covering common development scenarios:
/brainstormSocratic discovery
/brainstorm [args]/coordinateAdvanced multi-agent coordination
/coordinate [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]/rememberSave to persistent memory
/remember [args]/statusCheck project status
/status [args]/testRun tests
/test [args]/verifyProve code works by running it
/verify [args]Creating Custom Workflows
You can create your own workflows by adding markdown files to .agents/workflows/:
---
description: Deploy application to staging
---
# Deployment Workflow
1. Run tests
2. Build production bundle
3. Deploy to staging server
4. Verify deploymentSave as .agents/workflows/deploy-staging.md and invoke with /deploy-staging.