CLI Reference
Manage jobs programmatically from your terminal. Install with npm:
npm install -g clawtickAuthentication
clawtick login --key cp_your_api_key
clawtick logout
clawtick whoamiJob Management
# List all jobs
clawtick jobs list
# Create a webhook job
clawtick jobs create \
--name "Sync customers" \
--cron "*/30 * * * *" \
--message "sync" \
--integration webhook \
--webhook-url "https://api.example.com/sync" \
--webhook-method POST
# Create an OpenClaw job
clawtick jobs create \
--name "Morning briefing" \
--cron "0 9 * * *" \
--message "Summarize my emails" \
--agent main
# Inspect a job
clawtick jobs inspect <job-id>
# Trigger a job manually
clawtick jobs trigger <job-id>
# Delete a job
clawtick jobs remove <job-id>Gateway
clawtick gateway set --url http://your-vps:80 --token YOUR_TOKEN
clawtick gateway status
clawtick gateway testAPI Keys
clawtick apikey list
clawtick apikey create
clawtick apikey revoke <key-id>Utility
clawtick status # Account overview
clawtick usage # Quota usage
clawtick doctor # Diagnose issues
clawtick version # CLI versionCLI Options
| Option | Description | Default |
|---|---|---|
--cron | Cron expression (5-field) | Required |
--message | Message/payload | Required |
--name | Job name | Auto-generated |
--integration | openclaw or webhook | openclaw |
--agent | Target agent ID | main |
--webhook-url | Webhook endpoint URL | - |
--webhook-method | HTTP method | POST |
--channel | Delivery channel | - |
--deliver | Send response to channel | false |
--timezone | IANA timezone | UTC |