Community translations by veiseule.ai — Help improve them on Crowdin
Skip to main content

openclaw agents

Administrér isolerede agenter (workspaces + auth + routing).

Relateret:

Eksempler

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

Identitetsfiler

Hvert agent-workspace kan indeholde en IDENTITY.md i workspace-roden:

  • Eksempelsti: ~/.openclaw/workspace/IDENTITY.md
  • set-identity --from-identity læser fra workspace-roden (eller en eksplicit --identity-file)

Avatarstier opløses relativt til workspace-roden.

Angiv identitet

set-identity skriver felter ind i agents.list[].identity:

  • name
  • theme
  • emoji
  • avatar (workspace-relativ sti, http(s)-URL eller data-URI)

Indlæs fra IDENTITY.md:

openclaw agents set-identity --workspace ~/.openclaw/workspace --from-identity

Tilsidesæt felter eksplicit:

openclaw agents set-identity --agent main --name "OpenClaw" --emoji "🦞" --avatar avatars/openclaw.png

Konfigurationseksempel:

{
  agents: {
    list: [
      {
        id: "main",
        identity: {
          name: "OpenClaw",
          theme: "space lobster",
          emoji: "🦞",
          avatar: "avatars/openclaw.png",
        },
      },
    ],
  },
}