docs: add multi-user/multi-node exec-approvals setup guide#4
Draft
petter-b wants to merge 57 commits into
Draft
Conversation
This reverts commit 8678b10.
This reverts commit 41f546f.
… stringify to mentions) (openclaw#16369) * fix(discord): role-based allowlist never matches because Carbon Role objects stringify to mentions Carbon's GuildMember.roles getter returns Role[] objects, not raw ID strings. String(Role) produces '<@&123456>' which never matches the plain role IDs in the guild allowlist config. Use data.rawMember.roles (raw Discord API string array) instead of data.member.roles (Carbon Role[] objects) for role ID extraction. Fixes openclaw#16207 * Docs: add discord role allowlist changelog entry --------- Co-authored-by: Shadow <hi@shadowing.dev>
1c8f01c to
8d717a8
Compare
petter-b
added a commit
that referenced
this pull request
Mar 2, 2026
* docs: fix slash commands path references (.claude/commands/ → .claude/dev/) * docs: clarify built-in subagent_types in review commands * docs: add scope constraints to prevent cross-domain false positives * docs: enhance docs-review with validation, filtering, and model selection - Add pre-screening step (skip with --full flag) - Add issue validation pass to filter false positives - Add model selection (haiku for screening, sonnet for review) - Add high-signal filtering criteria (DO NOT REPORT section) - Add structured YAML output format with categories - Add confidence levels (HIGH/MEDIUM) per issue --------- Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a "Multi-user and multi-node setup" section to exec-approvals docs explaining the dual-config model: gateway and node each have their own exec-approvals.json, both must allow a command for it to succeed.
Covers: how it works, common failure scenario, configuring node approvals via CLI/Control UI, and an example config restricting a node to a single agent.