Usage
Description
Triggers a new run of your deployed crew. You can pass input data and stream events in real-time.Options
| Option | Description |
|---|---|
--input <json> | JSON input to pass to your crew |
--input-file <path> | Read input from a JSON file |
--stream | Stream events in real-time |
--project <name> | Project to invoke (defaults to current directory) |
--deployment <id> | Specific deployment to run (defaults to latest) |
--wait | Wait for completion and show result |
--timeout <seconds> | Maximum time to wait (default: 300) |
Examples
Basic invocation
Stream events
Input from file
Wait for result
Invoke specific deployment
Input Format
Input must be valid JSON:inputs parameter:
Event Types
When streaming, you’ll see these event types:| Event | Description |
|---|---|
▶ Run started | Run execution began |
├─ [time] message | Log from your crew |
├─ Tool: name(args) | Tool was invoked |
├─ Artifact: name | File was produced |
✅ Run completed | Success |
❌ Run failed | Error occurred |