Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@cloudcruise/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
CloudCruise CLI
CLI for managing CloudCruise browser automation workflows and runs. Designed for coding agents to diagnose, fix, and verify workflow failures.
Install
npm install -g @cloudcruise/cliSetup
cloudcruise auth login --api-key "sk_..."Quick Start
# Get a workflow
cloudcruise workflows get <workflow_id> > workflow.json
# Start a run and wait for completion
cloudcruise run start <workflow_id> --wait
# Start a debug run with snapshots on every node
cloudcruise run start <workflow_id> --wait --debug
# Inspect a failed run
cloudcruise run get <session_id>
# Update a workflow
cloudcruise workflows update <workflow_id> --file workflow.json --version-note "Fixed login selector"Coding Agent Integration
Install skill files so your coding agent has the full CLI and workflow DSL reference:
cloudcruise install --skills # Claude Code + Cursor
cloudcruise install --skills --target claude # Claude Code only
cloudcruise install --skills --target cursor # Cursor onlyAll Commands
| Command | Description |
|---|---|
auth login |
Save API key |
auth status |
Check authentication |
auth logout |
Remove credentials |
workflows get <id> |
Get workflow definition |
workflows update <id> |
Update workflow (new version) |
run start <id> |
Start a run |
run get <id> |
Get run status and results |
run list |
List runs with filters |
run interrupt <id> |
Stop a running session |
run errors <id> |
Error analytics |
run snapshots <id> <node_id> |
Debug snapshots |
utils uuid |
Generate UUIDs for node IDs |
install --skills |
Install skill files for coding agents |
License
MIT