| name | symphony |
| description | Interact with Symphony task orchestration system. Create tasks, check status, manage workflow automation. Use for AI-driven bug fixes, features, and automation. |
Symphony - Task Orchestration Skill
What is Symphony?
Symphony is an AI-powered task orchestration system that:
- ๐ Manages tasks on a Kanban board
- ๐ค Automatically executes tasks using AI agents
- ๐ Handles state transitions (Inbox โ Todo โ Running โ Done/Failed)
- ๐ Triggers hooks for automation (git clone, test, PR, notify)
- ๐ Isolates each task in its own workspace
Commands
| Command | Description |
|---|
/symphony task create <title> | Create a new task |
/symphony task list [state] | List tasks (all or by state) |
/symphony task show <id> | Show task details |
/symphony task move <id> <state> | Move task to new state |
/symphony task retry <id> | Retry a failed task |
/symphony status | Show scheduler status |
/symphony board | Open Kanban board in browser |
Quick Examples
Create a Bug Fix Task
/symphony task create "Fix login timeout after 30s"
/symphony task create "Fix SSO login" --desc "Users report 500 error when logging in with SSO"
Create a Feature Task
/symphony task create "Add dark mode support" --desc "Implement system-wide dark mode with toggle"
/symphony task move <task-id> todo
Monitor Progress
/symphony task list
/symphony task list running
/symphony status
/symphony board
Task Workflow
โโโโโโโโโโโ drag/ โโโโโโโโโโโ auto โโโโโโโโโโโ done โโโโโโโโโโโ
โ Inbox โ โโโโโโโโโโโ Todo โ โโโโโโโโโโโ Running โ โโโโโโโโโ Done โ
โโโโโโโโโโโ API โโโโโโโโโโโ scheduler โโโโโโโโโโโ agent โโโโโโโโโโโ
โ โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
failed (retryable)
States
| State | Description |
|---|
inbox | New tasks, not yet scheduled |
todo | Ready to be picked up by scheduler |
running | AI agent is working on it |
done | Completed successfully |
failed | Failed (may retry automatically) |
Automation Hooks
Symphony can automate the entire workflow using hooks in ~/.symphony/config.yaml:
hooks:
after_create: |
cd {{.Workspace}}
git clone https://github.com/yourorg/yourrepo .
git checkout -b {{.TaskID}}
before_run: |
cd {{.Workspace}}
npm install # or mix deps.get, pip install
after_run: |
cd {{.Workspace}}
npm test
ai review --output review.md
git add . && git commit -m "{{.TaskTitle}}"
git push origin {{.TaskID}}
gh pr create --title "{{.TaskTitle}}" --body-file review.md
curl -X POST $SLACK_WEBHOOK -d "{\"text\": \"โ
{{.TaskTitle}}\"}"
before_remove: |
cd {{.Workspace}}
gh pr merge --squash --delete-branch
Task Types
Bug Fix
/symphony task create "[BUG] Fix login timeout" --desc "
Steps to reproduce:
1. Open app
2. Wait 30 seconds
3. Try to login
Expected: Login succeeds
Actual: Timeout error
"
Feature
/symphony task create "[FEATURE] Add dark mode" --desc "
Requirements:
- System-wide dark mode toggle
- Persist preference in localStorage
- Support auto (system preference)
- Apply to all components
"
Refactor
/symphony task create "[REFACTOR] Extract auth logic" --desc "
Move authentication logic from App.jsx to:
- hooks/useAuth.js
- contexts/AuthContext.jsx
- services/auth.js
"
Spike/Research
/symphony task create "[SPIKE] Evaluate GraphQL vs REST" --desc "
Research and document:
1. Performance comparison
2. Developer experience
3. Migration effort
4. Recommendation
"
Integration with Other Skills
| Skill | When to Use |
|---|
workflow | For complex multi-step work WITHIN a task |
ag | When task needs parallel execution or multi-agent orchestration |
review | To review task code before completion |
tmux | For long-running task execution |
github | To create/manage PRs from tasks |
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Symphony Server (localhost:8081) โ
โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโ โ
โ โ Kanban โ โ API โ โScheduler โ โ
โ โ UI โ โ /api/* โ โ (30s) โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโ โ
โ โ โ
โ โโโโโโโโโโโโ โ
โ โ AI Agent โ โ
โ โ (ai) โ โ
โ โโโโโโโโโโโโ โ
โ โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Workspaces (~/.symphony/workspaces/) โ โ
โ โ โโ task-abc123/ (running) โ โ
โ โ โโ task-def456/ (done) โ โ
โ โ โโ task-xyz789/ (todo) โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Configuration
Config file: ~/.symphony/config.yaml
workspace:
root: ~/.symphony/workspaces
agent:
kind: ai
command: ~/project/ai/bin/ai
args: ["--mode", "rpc"]
max_concurrent_agents: 3
max_turns: 100
env:
OPENAI_API_KEY: ${OPENAI_API_KEY}
hooks:
after_create: ""
before_run: ""
after_run: ""
before_remove: ""
timeout_ms: 60000
polling:
interval_ms: 30000
Best Practices
- Start with clear descriptions - Help AI understand the task
- Use templates - Bug, Feature, Refactor, Spike prefixes
- Check status first -
/symphony status before creating new tasks
- Review running tasks - Monitor AI progress on Kanban board
- Configure hooks - Automate repetitive work (test, PR, notify)
- Set limits -
max_concurrent_agents to avoid overwhelming system
Example: Full Automation Flow
/symphony task create "[BUG] Fix login timeout" --desc "
Users report timeout after 30 seconds.
Reproduce: Login โ Wait 30s โ Timeout error
Expected: Login should succeed within 5s
"
/symphony task list inbox
/symphony task move <task-id> todo
/symphony status
/symphony board
/symphony task move <task-id> done
/symphony task move <task-id> done
Troubleshooting
| Problem | Solution |
|---|
| Task stuck in running | Check /symphony status, agent logs |
| Agent not starting | Verify agent.command path, check logs |
| Hooks not working | Check hook syntax, run manually |
| Too many concurrent tasks | Reduce max_concurrent_agents in config |
| Task failed | Check error message, use /symphony task retry <id> |
API Reference
If you need direct API access:
curl -X POST http://localhost:8081/api/tasks \
-H "Content-Type: application/json" \
-d '{"title": "Fix bug", "description": "..."}'
curl http://localhost:8081/api/tasks
curl -X PUT http://localhost:8081/api/tasks/<id> \
-H "Content-Type: application/json" \
-d '{"state": "todo"}'
curl http://localhost:8081/api/status
Anti-Patterns
โ Don't create tasks without descriptions - AI needs context
โ Don't skip Todo state - Scheduler needs to pick it up
โ Don't ignore failed tasks - Check error, fix, or delete
โ Don't run too many concurrent - System may become unstable
โ Don't forget to check status - Monitor AI progress