Files
BlueRoseNote/07-Other/AI/AI Agent/OpenClaw/OpenClaw ACPX配置.md

31 lines
624 B
Markdown
Raw Normal View History

2026-03-16 18:45:09 +08:00
# 配置参数
## ACPX核心配置
2026-03-16 18:10:20 +08:00
```json
{
"acp": {
"enabled": true,
"dispatch": { "enabled": true },
"backend": "acpx",
"defaultAgent": "claude",
"allowedAgents": ["claude", "codex", "pi", "opencode", "gemini"],
"maxConcurrentSessions": 8
}
}
```
2026-03-16 18:45:09 +08:00
## 权限配置:
2026-03-16 18:10:20 +08:00
```bash
openclaw config set plugins.entries.acpx.config.permissionMode approve-all
openclaw config set plugins.entries.acpx.config.nonInteractivePermissions fail
```
2026-03-16 18:45:09 +08:00
## 重启并验证
2026-03-16 18:10:20 +08:00
```bash
openclaw restart
2026-03-16 18:45:09 +08:00
/acp doctor
```
2026-03-16 18:10:20 +08:00
2026-03-16 18:45:09 +08:00
# 启动命令
```bash
/acp spawn claude --mode oneshot --thread auto --cwd /Users/yuyue07/Desktop/openclaw
2026-03-16 18:10:20 +08:00
```