traseai agents

Manage isolated agents (workspaces + auth + routing). Related:

Examples

traseai agents list
traseai agents add work --workspace ~/.traseai/workspace-work
traseai agents set-identity --workspace ~/.traseai/workspace --from-identity
traseai agents set-identity --agent main --avatar avatars/traseai.png
traseai agents delete work

Identity files

Each agent workspace can include an IDENTITY.md at the workspace root:
  • Example path: ~/.traseai/workspace/IDENTITY.md
  • set-identity --from-identity reads 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:
  • name
  • theme
  • emoji
  • avatar (workspace-relative path, http(s) URL, or data URI)
Load from IDENTITY.md:
traseai agents set-identity --workspace ~/.traseai/workspace --from-identity
Override fields explicitly:
traseai agents set-identity --agent main --name "TraseAI" --emoji "🤖" --avatar avatars/traseai.png
Config sample:
{
  agents: {
    list: [
      {
        id: "main",
        identity: {
          name: "TraseAI",
          theme: "space lobster",
          emoji: "🤖",
          avatar: "avatars/traseai.png",
        },
      },
    ],
  },
}