Install
openclaw skills install catchclawSearch, install, and export agentars and teams from the CatchClaw marketplace. Use when the user wants to find, install, or package agent templates or teams.
openclaw skills install catchclawSource: This skill is from the CatchClaw skill repository.
An agentar is a distributable agent archive (ZIP) containing workspace files such as SOUL.md, skills, and other configuration. It can be installed as a new agent or used to overwrite an existing agent with a single command.
Important: Before performing any action, verify the bundled CLI works (see CLI Setup). Do not run search, install, export, rollback, or team commands until verification passes.
~/.agents/skills/catchclaw/agentar_cli.mjs).node <skill-dir>/agentar_cli.mjs version. Only after it succeeds, proceed with search/install/export/rollback/team commands.Never run $CLI search, $CLI install, $CLI export, $CLI rollback, or $CLI team … until verification passes.
</HARD-GATE>
The CLI is bundled in this skill's directory. Run it directly:
node <skill-dir>/agentar_cli.mjs <command>
Where <skill-dir> is the directory containing this SKILL.md (e.g. ~/.agents/skills/catchclaw/).
All commands below use $CLI as shorthand for node <skill-dir>/agentar_cli.mjs.
These are listed in metadata.openclaw.requires.env for registry/security analysis. Neither is required for normal use; omit both to use defaults.
AGENTAR_API_BASE_URL — Override the default API base URL (defaults to https://catchclaw.me)AGENTAR_HOME — Override the default CLI config directory (defaults to ~/.agentar)Aligned with metadata.openclaw.requires.config and metadata.json in this skill:
| Path | Access | Purpose |
|---|---|---|
~/.agentar/ | read/write | CLI config (config.json), optional standalone install copy of agentar_cli.mjs |
~/.openclaw/workspace | read/write | Main agent workspace (install --overwrite, export) |
~/.openclaw/agentar-workspaces/ | read/write | Per-agent workspaces (install --name …) |
~/agentar-exports/ | write | Default directory for export ZIP output |
~/.openclaw/agentar-teams/ | read/write | Team registries (team install, team list, team status) |
<skill-dir>/skills/.credentials | write (optional) | Written when install is run with --api-key |
$CLI install <slug> --name <name>$CLI team install <slug>NEVER use $CLI install for teams. It will fail because teams are not individual agentars. If the instruction mentions "team", "agenteam", or the slug contains "team", use $CLI team install.
If unsure, run $CLI search <slug> first — the result will show the type.
</HARD-GATE>
$CLI search <keyword>
Search the CatchClaw marketplace for agentars matching the keyword.
$CLI install <slug> --name <name> [--api-key <key>] [--version <ver>]
$CLI install <slug> --overwrite [--version <ver>]
Install an agentar from the marketplace.
Options:
--name <name> — Create a new agent with the given name. Existing agents are not affected. (Preferred; list this option first when prompting.)--overwrite — Overwrite the main agent (~/.openclaw/workspace). Existing workspace is backed up automatically. Never use without the user's explicit selection.--api-key <key> — (Optional) API key to save into skills/.credentials for agentars that require backend authentication.--version <ver> — (Optional) Install a specific version. When omitted, installs the latest version.Version conflict handling: When installing a specific version and the agent is already installed locally with a different version, the CLI will prompt:
"agent-name" (v1.0.0) is already installed. Install v1.4.0? [y/N]
y to backup the existing version and install the new oneN (or Enter) to abort--overwrite to skip the confirmation prompt$CLI export [--agent <id>] [-o <path>] [--include-memory]
Export an agent as a distributable agentar ZIP package. MEMORY.md is excluded by default. Output defaults to ~/agentar-exports/. Sensitive files (.credentials, .env, .secret, .key, .pem) are automatically filtered out.
Options:
--agent <id> — Agent ID to export. If the user did not specify an agent, you MUST list agents and ask the user to choose before running export; do not export without the user's selection.-o, --output <path> — Output ZIP file path.--include-memory — Include MEMORY.md in export (excluded by default).$CLI rollback
$CLI rollback --latest
Restore a workspace from backup. Without --latest, lists all available backups for selection. The current workspace is automatically backed up before restoring, so rollback is always safe.
$CLI version
Show the CLI version.
$CLI team search <keyword>
Search the CatchClaw marketplace for teams matching the keyword. Results include slug, name, version, and member count.
$CLI team install <slug> [--version <ver>]
Install a team and all its member agents from the marketplace.
Options:
--version <ver> — (Optional) Install a specific version of the team. When omitted, installs the latest version. The version is passed to the backend to fetch the corresponding team manifest snapshot with pinned member versions.Behavior:
~/.openclaw/agentar-teams/<slug>/team.yamlAGENTS.md with team coordination blockMember version conflict handling: When a team specifies particular versions for its member agents, and a member is already installed locally with a different version, the CLI will prompt per member:
"agent-a" (v1.0.0) is already installed. Team requires v1.2.0. Upgrade? [y/N]
y to upgrade that member agent (with automatic backup)N to keep the existing version and continue installing remaining members$CLI team list
List all locally installed teams with their name, slug, version, and member count.
$CLI team status <slug>
Show detailed status of a team: member agents, their install paths, and whether their AGENTS.md contains the team block.
After the user confirms, execute: $CLI team install <slug>
Never execute team install without both: (1) a slug, and (2) explicit user confirmation. </HARD-GATE>
Present the following two options to the user and wait for their response:
Important:
After the user explicitly selects "new", execute: $CLI install <slug> --name <user-specified name> (add --version <ver> if the user specified a version)
After the user explicitly selects "overwrite", execute: $CLI install <slug> --overwrite (add --version <ver> if the user specified a version)
Never execute install without both: (1) a slug, and (2) explicit user confirmation of installation mode. </HARD-GATE>
--include-memory..credentials, .env, .secret, .key, .pem).| Error | Action |
|---|---|
| CLI file not found | Verify the skill is installed correctly — agentar_cli.mjs should be in the skill directory |
| API unreachable or network error | Suggest checking network connectivity, or override the API URL with: export AGENTAR_API_BASE_URL=<url> |
| Node.js not installed | Instruct user to install Node.js from https://nodejs.org/ |
| Download or extraction failure | Show the error message and suggest retrying the command |
$CLI search <keyword> to find agentars. Each result includes a slug identifier.$CLI export (no --agent) to list agents, present the list to the user, and ask them to choose. Only after the user selects an agent, run $CLI export --agent <id>. Do not export without the user's explicit selection.$CLI rollback to list available backups and restore one.$CLI team search <keyword> to find teams. Each result includes a slug identifier.$CLI team install <slug>.$CLI team list to see installed teams or $CLI team status <slug> for detailed member status.