Skip to main content

Registry Commands

Browse available agent types in the Clawrium registry.

clawctl agent registry <command> [options]

Commands

CommandDescription
clawctl agent registry getList available agent types
clawctl agent registry describeShow detailed information about an agent type

clawctl agent registry get

List available agent types in the registry.

clawctl agent registry get

Example

$ clawctl agent registry get
Available Agents
┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name ┃ Latest Version ┃ Description ┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ zeroclaw │ 0.1.0 │ Zero-config Claude assistant │
│ openclaw │ 0.2.0 │ OpenAI-powered assistant │
│ nemoclaw │ 0.1.0 │ Local Ollama-based assistant │
└────────────┴────────────────┴────────────────────────────────┘

Error Handling

If an agent's manifest is corrupted or missing:

               Available Agents
┏━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┓
┃ Name ┃ Latest Version ┃ Description ┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━┩
│ zeroclaw │ 0.1.0 │ Zero-config Claude │
│ badclaw │ ? │ Corrupted manifest │
└────────────┴────────────────┴──────────────────────┘

clawctl agent registry describe

Show detailed information about an agent type.

clawctl agent registry describe <agent_name>

Arguments

ArgumentDescription
agent_nameName of the agent type to show

Example

$ clawctl agent registry describe zeroclaw

zeroclaw
Zero-config Claude assistant for local development

Supported Platforms
┏━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Version ┃ OS ┃ Architecture ┃ Min Memory ┃ GPU Required ┃
┡━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
0.1.0 │ Ubuntu 22.04 │ x86_64 │ 2048MB │ No │
0.1.0 │ Ubuntu 22.04 │ aarch64 │ 2048MB │ No │
0.1.0 │ Debian 12 │ x86_64 │ 2048MB │ No │
0.1.0 │ Debian 12 │ aarch64 │ 2048MB │ No │
└─────────┴─────────────────┴──────────────┴────────────┴──────────────┘

Dependencies:
- docker >= 20.10
- python >= 3.10

Exit Codes

CodeMeaning
0Agent information displayed successfully
1Agent not found or manifest corrupted

Error Scenarios

Agent not found:

$ clawctl agent registry describe unknown
Error: Agent 'unknown' not found in registry

Corrupted manifest:

$ clawctl agent registry describe badclaw
Error: Registry manifest is corrupted: Invalid YAML syntax