bernstein_run
Start an orchestration run to queue multi-agent work for a given goal; returns task_id and run_id for tracking, then check status after the recommended delay to monitor progress.
Instructions
Start an orchestration run. A run does real work and takes minutes to hours; the call returns once the run is queued, not when it finishes. Do not re-issue it while waiting, that starts a second run. Follow the run with bernstein_run_status, passing either the returned task_id or the returned run_id, after waiting the returned poll_after_ms. Pass parent_task_id to create the run as a subtask of an existing task. The queued orchestration writes project state and starts agent work. Host effects: writes files; spawns agent processes; makes network requests.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | ||
| role | No | ||
| scope | No | ||
| priority | No | ||
| complexity | No | ||
| parent_task_id | No | ||
| estimated_minutes | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| _meter | Yes | ||
| result | Yes |