CLI Reference
minion-cli is the management CLI available on minion VPS instances.
Basic commands
Section titled “Basic commands”Health check
Section titled “Health check”minion-cli healthChecks the minion server status.
Status
Section titled “Status”minion-cli statusDisplays agent state, uptime, version, and HQ connection status.
Skill management
Section titled “Skill management”List skills
Section titled “List skills”# List skills on HQminion-cli skill list
# List locally deployed skillsminion-cli skill list --localFetch skill
Section titled “Fetch skill”# Fetch a skill from HQ and deploy locallyminion-cli skill fetch <name>Push skill
Section titled “Push skill”# Push a local skill to HQ (new version auto-created)minion-cli skill push <name>Workflow management
Section titled “Workflow management”Fetch workflow
Section titled “Fetch workflow”# Fetch a workflow from HQ (missing skills are auto-fetched)minion-cli workflow fetch <name>Push workflow
Section titled “Push workflow”# Push a local workflow to HQ (skills are auto-pushed)minion-cli workflow push <name>Troubleshooting
Section titled “Troubleshooting”Unknown agent state
Section titled “Unknown agent state”minion-cli healthminion-cli statusSkill not found
Section titled “Skill not found”# Check local skill listminion-cli skill list --local
# Re-fetch from HQminion-cli skill fetch <name>Workflow not executing
Section titled “Workflow not executing”You can inspect and trigger workflows directly via the Agent API.
# List workflows (check next_run)curl -s "http://localhost:3001/api/workflows" \ -H "Authorization: Bearer $API_TOKEN"
# Manual triggercurl -s -X POST "http://localhost:3001/api/workflows/trigger" \ -H "Authorization: Bearer $API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "workflow_id": "<workflow-uuid>" }'