Skip to Content
GuidesWorkflowsOverview

Workflows

Advanced workflows for getting the most out of Agent Harbor.

Overview

Agent Harbor supports sophisticated workflows for complex development tasks:

WorkflowDescription
Long-Horizon TasksMulti-day autonomous development with status files, code review, and supervisor orchestration
Parallel AgentsRun multiple agents simultaneously to explore different approaches
Multi-OS TestingValidate builds and tests across Linux, macOS, and Windows
Delegated TaskingBreak 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.org

Learn 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"

Learn more about Delegated Tasking