mirror of
https://github.com/harivansh-afk/agentcomputer-delegate.git
synced 2026-04-15 03:00:43 +00:00
1.1 KiB
1.1 KiB
CLI Cheatsheet
Authentication
computer whoami
computer login
Machine discovery
computer ls --json
computer fleet status --json
Agent discovery
computer agent agents <machine> --json
Sessions
computer agent sessions list <machine> --json
computer agent sessions new <machine> --agent claude --name review --json
computer agent status <machine> --session <session_id> --json
Prompting
computer agent prompt <machine> "inspect the repo and summarize the failing tests" --agent claude --name review
computer agent prompt <machine> "continue from the previous task" --session <session_id>
Streaming and control
computer agent watch <machine> --session <session_id>
computer agent cancel <machine> --session <session_id> --json
computer agent interrupt <machine> --session <session_id> --json
computer agent close <machine> --session <session_id>
Good defaults
- Prefer machine handles over machine ids when both are available.
- Prefer
--namefor human-meaningful persistent sessions. - Prefer
--jsonwhen another program or agent needs to read the result.