openclaw agents

격리된 에이전트들을 관리합니다 (워크스페이스 + 인증 + 라우팅).

관련 항목:

예시

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

신원 파일

각 에이전트 워크스페이스는 워크스페이스 루트에 IDENTITY.md를 포함할 수 있습니다:

  • 예시 경로: ~/.openclaw/workspace/IDENTITY.md
  • set-identity --from-identity는 워크스페이스 루트에서 읽습니다 (또는 명시적인 --identity-file)

아바타 경로는 워크스페이스 루트를 기준으로 확인됩니다.

신원 설정

set-identity는 필드를 agents.list[].identity에 기록합니다:

  • name
  • theme
  • emoji
  • avatar (워크스페이스 상대 경로, http(s) URL, 또는 data URI)

IDENTITY.md에서 로드:

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

필드를 명시적으로 재정의:

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

구성 샘플:

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