openclaw agents¶
격리된 에이전트 (워크스페이스 + 인증 + 라우팅)를 관리합니다.
관련 항목:
- 다중 에이전트 라우팅: Multi-Agent Routing
- 에이전트 워크스페이스: Agent workspace
예제¶
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에 필드를 기록합니다:
namethemeemojiavatar(워크스페이스 기준 경로, 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",
},
},
],
},
}