Source: 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, or rollback until verification passes.
Before running any search, install, export, or rollback command, you MUST verify the bundled CLI. The CLI (agentar_cli.mjs) is bundled in this skill's directory — no download or copy is needed.
~/.agents/skills/catchclaw/agentar_cli.mjs).node /agentar_cli.mjs version . Only after it succeeds, proceed with search/install/export/rollback.Never run $CLI search, $CLI install, $CLI export, or $CLI rollback until verification passes.
The CLI is bundled in this skill's directory. Run it directly:
node <skill-dir>/agentar_cli.mjs <command>
Where is the directory containing this SKILL.md (e.g. ~/.agents/skills/catchclaw/).
All commands below use $CLI as shorthand for node .
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 |
| write (optional) | Written when install is run with --api-key |
$CLI search <keyword>
Search the CatchClaw marketplace for agentars matching the keyword.
$CLI install <slug> --name <name> [--api-key <key>]
$CLI install <slug> --overwrite
Install an agentar from the marketplace.
Options:
--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 — (Optional) API key to save into skills/.credentials for agentars that require backend authentication.$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 — 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 — 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.
Before executing install:
Present the following two options to the user and wait for their response:
Important:
After the user explicitly selects "new", execute: $CLI install
After the user explicitly selects "overwrite", execute: $CLI install
Never execute install without both: (1) a slug, and (2) explicit user confirmation of installation mode.
When the user has not specified which agent to export, you MUST let the user choose first. Do NOT export on your own. If --agent was not provided by the user:
$CLI export without --agent to list available agents (or equivalent to show choices).$CLI export --agent (and optional -o, --include-memory as needed). Never assume or pick an agent for the user.--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= |
| 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 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 . Do not export without the user's explicit selection.$CLI rollback to list available backups and restore one.共 3 个版本