coderclaw agentsManage isolated agents (workspaces + auth + routing).
Related:
coderclaw agents list
coderclaw agents add work --workspace ~/.coderclaw/workspace-work
coderclaw agents set-identity --workspace ~/.coderclaw/workspace --from-identity
coderclaw agents set-identity --agent main --avatar avatars/coderclaw.png
coderclaw agents delete work
Each agent workspace can include an IDENTITY.md at the workspace root:
~/.coderclaw/workspace/IDENTITY.mdset-identity --from-identity reads from the workspace root (or an explicit --identity-file)Avatar paths resolve relative to the workspace root.
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-identity
Override fields explicitly:
coderclaw agents set-identity --agent main --name "CoderClaw" --emoji "🦞" --avatar avatars/coderclaw.png
Config sample:
{
agents: {
list: [
{
id: "main",
identity: {
name: "CoderClaw",
theme: "space lobster",
emoji: "🦞",
avatar: "avatars/coderclaw.png",
},
},
],
},
}