단일 파일에서 디렉토리 구조로 변경하여 컨텍스트 관리 용이하게 함. openclaw-manual.md는 위키링크 인덱스로 변환. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
704 B
Markdown
30 lines
704 B
Markdown
---
|
|
title: OpenClaw 멀티 에이전트
|
|
updated: 2026-03-18
|
|
---
|
|
|
|
각 에이전트는 독립된 워크스페이스, 세션, 인증 프로필 보유.
|
|
|
|
## 설정
|
|
|
|
```json5
|
|
agents: {
|
|
list: [
|
|
{ id: "home", workspace: "~/.openclaw/workspace-home" },
|
|
{ id: "work", workspace: "~/.openclaw/workspace-work" }
|
|
]
|
|
},
|
|
bindings: [
|
|
{ agentId: "home", match: { channel: "whatsapp", accountId: "personal" } },
|
|
{ agentId: "work", match: { channel: "discord", guildId: "123" } }
|
|
]
|
|
```
|
|
|
|
## 라우팅 우선순위
|
|
|
|
peer > parentPeer > guildId+roles > guildId > teamId > accountId > channel > 기본
|
|
|
|
## 에이전트 관리
|
|
|
|
`openclaw agents add|list|remove`, 에이전트별 샌드박스/도구 제한 가능
|