agentforge run
Execute an agent from the command line.
Usage
agentforge run --task "Find the latest sales numbers"
agentforge run --task "Process order #123" --agent order-processorOptions
| Flag | Description |
|---|---|
--task, -t | The task to execute |
--agent, -a | Agent name (if multiple agents) |
--run-id | Resume a specific run |
--verbose, -v | Verbose output |
--stream | Stream output in real-time |
Examples
# Basic run
agentforge run -t "Summarize the quarterly report"
# Stream output
agentforge run -t "Write a blog post" --stream
# Resume a run
agentforge run -t "Process data" --run-id run_abc123