Skip to content

openclaw agents

격리된 에이전트를 관리합니다(작업 공간 + 인증 + 라우팅).

관련 항목:

bash
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-identityagents.list[].identity에 필드를 씁니다.

  • name
  • theme
  • emoji
  • avatar (작업공간 상대 경로, http(s) URL 또는 데이터 URI)

IDENTITY.md에서 로드:

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

필드를 명시적으로 재정의합니다.

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

구성 샘플:

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

비공식 커뮤니티 번역 · 공식 영문 문서