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:

/brainstorm

Socratic discovery

Example Usage
/brainstorm [args]
/create

Create new features

Example Usage
/create [args]
/debug

Debug issues

Example Usage
/debug [args]
/deploy

Deploy application

Example Usage
/deploy [args]
/enhance

Improve existing code

Example Usage
/enhance [args]
/orchestrate

Multi-agent coordination

Example Usage
/orchestrate [args]
/plan

Task breakdown

Example Usage
/plan [args]
/preview

Preview changes

Example Usage
/preview [args]
/status

Check project status

Example Usage
/status [args]
/test

Run tests

Example Usage
/test [args]
/ui-ux-pro-max

Design with 50 styles

Example Usage
/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 deployment

Save as .agent/workflows/deploy-staging.md and invoke with /deploy-staging.

Next Steps