CLI Overview
Open source at https://github.com/CloudCruise/cloudcruise-cli. Report bugs via GitHub issues or Discord. The CloudCruise CLI provides a command-line interface for managing workflows and runs. It’s designed for coding agents to diagnose, fix, and verify workflow failures — but works just as well for manual use.Installation
Setup
Get your API key at CloudCruise Settings.CLOUDCRUISE_API_KEY environment variable. All commands also accept --api-key and --base-url overrides.
Coding Agent Integration
Install skill files so your coding agent has the full CLI and workflow DSL reference:Quick Start
Error-Fix-Verify Loop
You can use the CLI to fix existing workflow errors. Here’s how a coding agent could sequence CLI commands:--debug flag forces every node to capture a page snapshot, which is essential for diagnosing selector issues. Without it, failed runs often lack snapshots.
Commands
| Command | Description |
|---|---|
auth login --api-key "sk_..." | Save API key to ~/.cloudcruise/config.json |
auth status | Check authentication status |
auth logout | Remove saved credentials |
workflows get <id> | Get workflow definition with nodes and edges |
workflows update <id> --file <path> | Update workflow (creates a new version) |
run start <id> | Start a run (returns session_id) |
run start <id> --wait | Start and stream events until completion |
run start <id> --wait --debug | Start with debug snapshots on every node |
run get <id> | Get run status, errors, screenshots, output |
run list | List runs (supports --workflow, --status, --limit) |
run interrupt <id> | Stop a running session |
run errors <id> --since 24h | Error analytics for a workflow |
run snapshots <id> <node_id> | Debug snapshots for a specific node |
utils uuid | Generate a random UUID for new node IDs |
install --skills | Install skill files for coding agents |
Next Steps
- Explore the Run API for detailed execution options
- Learn about Vault API for secure credential management
- Check out Workflow API to manage your workflows
- Set up Webhooks for event notifications

