mayros agents
Manage isolated agents (workspaces + auth + routing).
Related:
- Multi-agent routing: Multi-Agent Routing
- Agent workspace: Agent workspace
Examples
bashmayros agents list mayros agents add work --workspace ~/.mayros/workspace-work mayros agents set-identity --workspace ~/.mayros/workspace --from-identity mayros agents set-identity --agent main --avatar avatars/mayros.png mayros agents delete work
Identity files
Each agent workspace can include an IDENTITY.md at the workspace root:
- Example path:
~/.mayros/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
set-identity writes fields into agents.list[].identity:
namethemeemojiavatar(workspace-relative path, http(s) URL, or data URI)
Load from IDENTITY.md:
bashmayros agents set-identity --workspace ~/.mayros/workspace --from-identity
Override fields explicitly:
bashmayros agents set-identity --agent main --name "Mayros" --emoji "⚡🛡️" --avatar avatars/mayros.png
Config sample:
json5{ agents: { list: [ { id: "main", identity: { name: "Mayros", theme: "space lobster", emoji: "⚡🛡️", avatar: "avatars/mayros.png", }, }, ], }, }