mirror of
https://github.com/harivansh-afk/agentcomputer-delegate.git
synced 2026-04-15 14:03:48 +00:00
2.8 KiB
2.8 KiB
| name | description | allowed-tools |
|---|---|---|
| computer-fleet | Control Agent Computer machines and remote agent sessions from a local agent using the aicomputer CLI. Use when you need to list machines, inspect installed agents, create or resume remote sessions, send prompts, stream progress, cancel or interrupt work, or close sessions cleanly. | Bash(npm:*), Bash(npx aicomputer@latest:*), Bash(aicomputer:*), Bash(computer:*) |
Computer Fleet
Use the aicomputer CLI as the control plane for remote machine agents.
When to use
Use this skill when the user wants to:
- work on one of their Agent Computer machines from a local agent
- delegate coding or research work to a remote Claude/Codex-style agent
- inspect remote agent status or stream progress
- stop or clean up remote agent sessions
Do not use SSH, VNC, or browser URLs when simple agent control is enough.
Quick start
- Ensure the CLI exists.
if command -v computer >/dev/null 2>&1; then
COMPUTER=computer
elif command -v aicomputer >/dev/null 2>&1; then
COMPUTER=aicomputer
else
npm install -g aicomputer
COMPUTER=computer
fi
- Verify auth.
$COMPUTER whoami || $COMPUTER login
- List running machines.
$COMPUTER ls --json
- Inspect available agents on a machine.
$COMPUTER agent agents <machine> --json
- Create or reuse a named session.
$COMPUTER agent sessions new <machine> --agent claude --name review --json
- Send prompts and stream output.
$COMPUTER agent prompt <machine> "fix the failing tests" --agent claude --name review
Default workflow
Prefer this flow:
- Pick a running machine from
computer ls --json. - Check
computer agent agents <machine> --jsonand choose an installed agent with credentials. - Reuse a stable session name for a task thread like
review,debug, ormigration. - Use
computer agent prompt ...for the work. - Use
computer agent status ...orcomputer fleet status --jsonwhen you need current state. - Use
computer agent cancel ...for normal stop. - Use
computer agent interrupt ...only if normal cancel is not enough. - Use
computer agent close ...when the session is no longer needed.
Prefer --json whenever you need to parse output programmatically.
Session naming
Use short stable names:
reviewdebugbackendfrontendrelease
Reuse the same session name when continuing the same line of work on the same machine. Start a new name when the task changes meaningfully.
Cancellation rules
cancelis the normal stop path.interruptis the hard stop path when the session does not settle quickly enough.closeis cleanup after the task is done or abandoned.
Commands reference
Read references/cli-cheatsheet.md when you need the exact command set.