Blink Agent Management
List and manage Claw agents in the workspace using blink agent. Zero configuration —
BLINK_AGENT_ID is already injected in every Claw machine.
List all agents in the workspace
blink agent list
Output: table of agent IDs, names, statuses, sizes, and models.
Check your own status
blink agent status
Check another agent's status
blink agent status --agent clw_a1b2c3d4
Set active agent for a session
eval $(blink agent use clw_a1b2c3d4 --export)
# Now blink secrets commands target that agent
Agent manager pattern — bootstrap another agent
# 1. List agents to find the worker agent IDs
blink agent list
# 2. Set credentials on the worker agent
blink secrets set --agent clw_worker GITHUB_TOKEN ghp_xxx
blink secrets set --agent clw_worker DATABASE_URL postgres://...
# 3. Verify secrets were set
blink secrets list --agent clw_worker
Machine-readable output
blink agent list --json
blink agent status --json
Command signatures
blink agent list [--json]
blink agent status [--agent <agent_id>] [--json]
blink agent use <agent_id> [--export] — use with eval to set active agent
- All commands use
BLINK_API_KEY(workspace key) — no extra setup needed - An agent can manage its own secrets directly with the
blink-secretsskill