feat(web): enforce allowFrom in group chats#175
Closed
pasogott wants to merge 1 commit intoopenclaw:mainfrom
Closed
feat(web): enforce allowFrom in group chats#175pasogott wants to merge 1 commit intoopenclaw:mainfrom
pasogott wants to merge 1 commit intoopenclaw:mainfrom
Conversation
Only process group messages from allowed senders (owner). Non-owner messages in groups are now ignored with verbose logging. Prevents unauthorized group members from triggering the agent when allowFrom restrictions are configured.
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 7, 2026
This was referenced Feb 20, 2026
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 22, 2026
dalefrieswthat
pushed a commit
to dalefrieswthat/openclaw
that referenced
this pull request
Feb 25, 2026
…aw#128) * Docs: fix router feedback analytics schema tables * Routing: wire feedback loop into runtime surfaces * Routing: deepen feedback telemetry and review lifecycle * Routing: tighten implicit feedback calibration signals (openclaw#175)
cael-dandelion-cult
added a commit
to karmaterminal/openclaw
that referenced
this pull request
Mar 4, 2026
… comms discipline Phase 4 adds: - DELEGATE dispatch verification + attachment passthrough (openclaw#177) - Time-based self-continuation with agent-specified delay (openclaw#176) - Pre/post-compaction lifecycle hooks (openclaw#178) - Config hot-reload gap (openclaw#182) - Context-pressure canary confirmation (smaller model per figs) Updated issue tracking: openclaw#174 closed, openclaw#175 root cause found. Added Discord comms discipline section (Storm Lag Protocol + figs directives). Thomistic basis: Summa II-II Q47-Q53, prudentia survives forgetfulness via voluntas.
heatherstew44-maker
pushed a commit
to heatherstew44-maker/openclaw
that referenced
this pull request
Mar 8, 2026
This change updates the recording and transcribing overlay to appear on the monitor that currently contains the mouse cursor, rather than always appearing on the primary monitor. This improves the user experience for those with multi-monitor setups. 🤖 Generated with [Pochi](https://getpochi.com) Co-authored-by: Pochi <[email protected]>
venhi5282
pushed a commit
to venhi5282/openclaw
that referenced
this pull request
Mar 9, 2026
…w#175) * Initial plan * fix(agent): 隔离最后一轮的 token 使用量报告总数 移植上游 commit a62ff19: 修复 token 使用量报告在多轮对话中累积 token 总数的问题 变更: - run.ts: 捕获最后一轮的 token 总数并在返回前覆盖到 usage.total - usage-reporting.test.ts: 新增测试验证 usage.total 反映当前轮次,而非累积总数 上游 PR: openclaw#17016 Co-authored-by: jiulingyun <[email protected]> * test: 修复 run.overflow-compaction.test.ts 中的函数名错误 将 agent-paths mock 中的 resolveOpenClawAgentDir 改为正确的 resolveClawdbotAgentDir Co-authored-by: jiulingyun <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: jiulingyun <[email protected]>
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.
Description
Adds
allowFromenforcement for group chats. Currently, non-owner messages in groups bypassallowFromchecks, allowing any group member to trigger the agent.Changes
monitorWebProviderallowFromrestrictions are configuredTesting
AI-Assisted