Workflows
Advanced workflows for getting the most out of Agent Harbor.
Overview
Agent Harbor supports sophisticated workflows for complex development tasks:
| Workflow | Description |
|---|---|
| Long-Horizon Tasks | Multi-day autonomous development with status files, code review, and supervisor orchestration |
| Parallel Agents | Run multiple agents simultaneously to explore different approaches |
| Multi-OS Testing | Validate builds and tests across Linux, macOS, and Windows |
| Delegated Tasking | Break down complex tasks with supervisor-worker patterns and automated code review |
Quick Examples
Long-Horizon Task Execution
Use status files to define milestones and let agents work autonomously:
ah task create --agent claude --long-horizon --status-file ./feature.status.orgLearn more about Long-Horizon Tasks
Parallel Agent Execution
Launch multiple agents on the same task:
ah task create --agent claude --agent codex --prompt "Implement caching layer"Or multiple instances of the same agent:
ah task create --agent claude --instances 3 --prompt "Find security issues"Learn more about Parallel Agents
Multi-OS Testing
Run tests across all platforms:
ah task create --agent claude --fleet cross-platform --prompt "Add feature and verify on all OS"Learn more about Multi-OS Testing
Delegated Tasking
Enable automated code review:
ah task create --agent claude --allow-delegation --prompt "Build REST API with proper security"