A workflow is a Markdown file that defines a sequence of steps for the AI agent to execute. When you type /start, /end, or /research, you’re invoking a workflow.Key characteristics:
Slash-invoked: filename.md → /filename command
Sequential execution: Checklist-based steps
Turbo-capable: Steps can auto-run without approval
Context-aware: Can load additional files on demand
---description: Quick research on a topic using web and local sourcescreated: 2026-01-01last_updated: 2026-02-15model: defaulttemperature: 0.7tools: read: true write: true bash: true search: true---
## Phase 1: Local Search// turbo- [ ] Run semantic search: `python3 scripts/smart_search.py "<query>" --limit 5`- [ ] Synthesize top results into a summary## Phase 2: Web Search- [ ] Search the web for supplementary sources- [ ] Cross-reference with local findings## Phase 3: Output- [ ] Deliver structured report with citations- [ ] Quicksave the research summary
Turbo annotations:
Annotation
Scope
Behavior
// turbo
Immediately following steps
Those steps auto-run without approval
// turbo-all
Anywhere in workflow
ALL steps auto-run
Never use // turbo for destructive actions like deleting files, pushing to production, or spending money.
## Phase 1: Pre-deployment Checks- [ ] Run test suite: `npm test`- [ ] Check for uncommitted changes: `git status`- [ ] Verify environment variables are set## Phase 2: Build & Deploy// turbo- [ ] Build production bundle: `npm run build`- [ ] Deploy to staging: `./scripts/deploy-staging.sh`## Phase 3: Verification- [ ] Run smoke tests on staging- [ ] Log deployment to session
6
Add usage documentation
Help future users understand when to use this workflow:
## Use Cases- Deploy to staging for client review- Test deployment process before production- Quick iteration during development sprints## Output FormatPrints deployment URL and smoke test results.