惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: extract Matrix push rules runbook, table verify CLI...
vincentkoc · 2026-04-23 · via Recent Commits to openclaw:main

@@ -0,0 +1,150 @@

1+

---

2+

summary: "Per-recipient Matrix push rules for quiet finalized preview edits"

3+

read_when:

4+

- Setting up Matrix quiet streaming for self-hosted Synapse or Tuwunel

5+

- Users want notifications only on finished blocks, not on every preview edit

6+

title: "Matrix push rules for quiet previews"

7+

---

8+9+

# Matrix push rules for quiet previews

10+11+

When `channels.matrix.streaming` is `"quiet"`, OpenClaw edits a single preview event in place and marks the finalized edit with a custom content flag. Matrix clients notify on the final edit only if a per-user push rule matches that flag. This page is for operators who self-host Matrix and want to install that rule for each recipient account.

12+13+

If you only want stock Matrix notification behavior, use `streaming: "partial"` or leave streaming off. See [Matrix channel setup](/channels/matrix#streaming-previews).

14+15+

## Prerequisites

16+17+

- recipient user = the person who should receive the notification

18+

- bot user = the OpenClaw Matrix account that sends the reply

19+

- use the recipient user's access token for the API calls below

20+

- match `sender` in the push rule against the bot user's full MXID

21+

- the recipient account must already have working pushers — quiet preview rules only work when normal Matrix push delivery is healthy

22+23+

## Steps

24+25+

<Steps>

26+

<Step title="Configure quiet previews">

27+28+

```json5

29+

{

30+

channels: {

31+

matrix: {

32+

streaming: "quiet",

33+

},

34+

},

35+

}

36+

```

37+38+

</Step>

39+40+

<Step title="Get the recipient's access token">

41+

Reuse an existing client session token where possible. To mint a fresh one:

42+43+

```bash

44+

curl -sS -X POST \

45+

"https://matrix.example.org/_matrix/client/v3/login" \

46+

-H "Content-Type: application/json" \

47+

--data '{

48+

"type": "m.login.password",

49+

"identifier": { "type": "m.id.user", "user": "@alice:example.org" },

50+

"password": "REDACTED"

51+

}'

52+

```

53+54+

</Step>

55+56+

<Step title="Verify pushers exist">

57+58+

```bash

59+

curl -sS \

60+

-H "Authorization: Bearer $USER_ACCESS_TOKEN" \

61+

"https://matrix.example.org/_matrix/client/v3/pushers"

62+

```

63+64+

If no pushers come back, fix normal Matrix push delivery for this account before continuing.

65+66+

</Step>

67+68+

<Step title="Install the override push rule">

69+

OpenClaw marks finalized text-only preview edits with `content["com.openclaw.finalized_preview"] = true`. Install a rule that matches that marker plus the bot MXID as sender:

70+71+

```bash

72+

curl -sS -X PUT \

73+

"https://matrix.example.org/_matrix/client/v3/pushrules/global/override/openclaw-finalized-preview-botname" \

74+

-H "Authorization: Bearer $USER_ACCESS_TOKEN" \

75+

-H "Content-Type: application/json" \

76+

--data '{

77+

"conditions": [

78+

{ "kind": "event_match", "key": "type", "pattern": "m.room.message" },

79+

{

80+

"kind": "event_property_is",

81+

"key": "content.m\\.relates_to.rel_type",

82+

"value": "m.replace"

83+

},

84+

{

85+

"kind": "event_property_is",

86+

"key": "content.com\\.openclaw\\.finalized_preview",

87+

"value": true

88+

},

89+

{ "kind": "event_match", "key": "sender", "pattern": "@bot:example.org" }

90+

],

91+

"actions": [

92+

"notify",

93+

{ "set_tweak": "sound", "value": "default" },

94+

{ "set_tweak": "highlight", "value": false }

95+

]

96+

}'

97+

```

98+99+

Replace before running:

100+101+

- `https://matrix.example.org`: your homeserver base URL

102+

- `$USER_ACCESS_TOKEN`: the recipient user's access token

103+

- `openclaw-finalized-preview-botname`: a rule ID unique per bot per recipient (pattern: `openclaw-finalized-preview-<botname>`)

104+

- `@bot:example.org`: your OpenClaw bot MXID, not the recipient's

105+106+

</Step>

107+108+

<Step title="Verify">

109+110+

```bash

111+

curl -sS \

112+

-H "Authorization: Bearer $USER_ACCESS_TOKEN" \

113+

"https://matrix.example.org/_matrix/client/v3/pushrules/global/override/openclaw-finalized-preview-botname"

114+

```

115+116+

Then test a streamed reply. In quiet mode the room shows a quiet draft preview and notifies once the block or turn finishes.

117+118+

</Step>

119+

</Steps>

120+121+

To remove the rule later, `DELETE` the same rule URL with the recipient's token.

122+123+

## Multi-bot notes

124+125+

Push rules are keyed by `ruleId`: re-running `PUT` against the same ID updates a single rule. For multiple OpenClaw bots notifying the same recipient, create one rule per bot with a distinct sender match.

126+127+

New user-defined `override` rules are inserted ahead of default suppress rules, so no extra ordering parameter is needed. The rule only affects text-only preview edits that can be finalized in place; media fallbacks and stale-preview fallbacks use normal Matrix delivery.

128+129+

## Homeserver notes

130+131+

<AccordionGroup>

132+

<Accordion title="Synapse">

133+

No special `homeserver.yaml` change is required. If normal Matrix notifications already reach this user, the recipient token + `pushrules` call above is the main setup step.

134+135+

If you run Synapse behind a reverse proxy or workers, make sure `/_matrix/client/.../pushrules/` reaches Synapse correctly. Push delivery is handled by the main process or `synapse.app.pusher` / configured pusher workers — ensure those are healthy.

136+137+

</Accordion>

138+139+

<Accordion title="Tuwunel">

140+

Same flow as Synapse; no Tuwunel-specific config is needed for the finalized preview marker.

141+142+

If notifications disappear while the user is active on another device, check whether `suppress_push_when_active` is enabled. Tuwunel added this option in 1.4.2 (September 2025) and it can intentionally suppress pushes to other devices while one device is active.

143+144+

</Accordion>

145+

</AccordionGroup>

146+147+

## Related

148+149+

- [Matrix channel setup](/channels/matrix)

150+

- [Streaming concepts](/concepts/streaming)