chore(sync): mirror docs from openclaw/openclaw@0bf19f540d

This commit is contained in:
openclaw-docs-sync[bot] 2026-05-03 22:48:21 +00:00
parent 1aa8923922
commit 9e63619f29
3 changed files with 21 additions and 6 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "openclaw/openclaw",
"sha": "f275e9d4b91b70fa542346800dad9f1467372101",
"syncedAt": "2026-05-03T22:30:04.652Z"
"sha": "0bf19f540d2ee98ad6e44a27bef5b9b0c3fef4ca",
"syncedAt": "2026-05-03T22:46:20.211Z"
}

View File

@ -258,15 +258,17 @@ In group `120363403215116621@g.us` with agents `["alfred", "baerbel"]`:
{
"agents": {
"reviewer": {
"tools": { "allow": ["read", "exec"] } // Read-only
"tools": { "allow": ["read", "exec"] }
},
"fixer": {
"tools": { "allow": ["read", "write", "edit", "exec"] } // Read-write
"tools": { "allow": ["read", "write", "edit", "exec"] }
}
}
}
```
`reviewer` is read-only. `fixer` can read and write.
</Accordion>
<Accordion title="4. Monitor performance">
With many agents, consider:

View File

@ -251,7 +251,19 @@ For **HTTP Request URLs mode**, replace `settings` with the HTTP variant and add
"event_subscriptions": {
"request_url": "https://gateway-host.example.com/slack/events",
"bot_events": [
/* same as Socket Mode */
"app_home_opened",
"app_mention",
"channel_rename",
"member_joined_channel",
"member_left_channel",
"message.channels",
"message.groups",
"message.im",
"message.mpim",
"pin_added",
"pin_removed",
"reaction_added",
"reaction_removed"
]
},
"interactivity": {
@ -420,11 +432,12 @@ The default manifest enables the Slack App Home **Home** tab and subscribes to `
"description": "Show the short help summary",
"url": "https://gateway-host.example.com/slack/events"
}
// ...repeat for every command with the same `url` value
]
}
```
Repeat that `url` value on every command in the list.
</Tab>
</Tabs>