ClawTickClawTickDocs

CLI Reference

Manage jobs programmatically from your terminal. Install with npm:

npm install -g clawtick

Authentication

clawtick login --key cp_your_api_key
clawtick logout
clawtick whoami

Job 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 test

API 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 version

CLI Options

OptionDescriptionDefault
--cronCron expression (5-field)Required
--messageMessage/payloadRequired
--nameJob nameAuto-generated
--integrationopenclaw or webhookopenclaw
--agentTarget agent IDmain
--webhook-urlWebhook endpoint URL-
--webhook-methodHTTP methodPOST
--channelDelivery channel-
--deliverSend response to channelfalse
--timezoneIANA timezoneUTC