agents
このコンテンツはまだ日本語訳がありません。
coderclaw agents
Section titled “coderclaw agents”Manage isolated agents (workspaces + auth + routing).
Related:
- Multi-agent routing: Multi-Agent Routing
- Agent workspace: Agent workspace
Examples
Section titled “Examples”coderclaw agents listcoderclaw agents add work --workspace ~/.coderclaw/workspace-workcoderclaw agents set-identity --workspace ~/.coderclaw/workspace --from-identitycoderclaw agents set-identity --agent main --avatar avatars/coderclaw.pngcoderclaw agents delete workIdentity files
Section titled “Identity files”Each agent workspace can include an IDENTITY.md at the workspace root:
- Example path:
~/.coderclaw/workspace/IDENTITY.md set-identity --from-identityreads from the workspace root (or an explicit--identity-file)
Avatar paths resolve relative to the workspace root.
Set identity
Section titled “Set identity”set-identity writes fields into agents.list[].identity:
namethemeemojiavatar(workspace-relative path, http(s) URL, or data URI)
Load from IDENTITY.md:
coderclaw agents set-identity --workspace ~/.coderclaw/workspace --from-identityOverride fields explicitly:
coderclaw agents set-identity --agent main --name "CoderClaw" --emoji "🦞" --avatar avatars/coderclaw.pngConfig sample:
{ agents: { list: [ { id: "main", identity: { name: "CoderClaw", theme: "space lobster", emoji: "🦞", avatar: "avatars/coderclaw.png", }, }, ], },}