agentcomputer-delegate/skills/computer-fleet/references/cli-cheatsheet.md
Harivansh Rathi 9237d4bb22 Add Agent Computer delegation skills
Co-authored-by: Codex <noreply@openai.com>
2026-03-21 13:08:48 -04:00

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 --name for human-meaningful persistent sessions.
  • Prefer --json when another program or agent needs to read the result.