Skip to Content
👋 Willkommen bei HowToUseOpenClaw Schnellstart

openclaw agents

Funktion: List and manage multiple agents. Isolierte Agenten verwalten (Workspaces, Auth, Routing).

Siehe auch: Multi-Agent Routing, Agent workspace.

Beispiele

So geht’s:

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

Identity files

Each agent workspace can include an IDENTITY.md at the workspace root:

  • Beispiel path: ~/clawd/IDENTITY.md
  • set-identity --von-identity reads von 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 von IDENTITY.md:

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

Override fields explicitly:

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

Config sample:

{ agents: { list: [\ {\ id: "main",\ identity: {\ name: "Clawd",\ theme: "space lobster",\ emoji: "🦞",\ avatar: "avatars/clawd.png"\ }\ }\ ] } }
Zuletzt aktualisiert am: