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

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog

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
fix(mantis): point telegram proof skill at workflow comma...
obviyus · 2026-05-18 · via Recent Commits to openclaw:main

@@ -17,7 +17,8 @@ artifact bundle. The runner leases the shared burner account from Convex.

1717

Run from the OpenClaw repo and branch under test:

18181919

```bash

20-

pnpm qa:telegram-user:crabbox -- start \

20+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

21+

"$proof_cmd" start \

2122

--tdlib-url http://artifacts.openclaw.ai/tdlib-v1.8.0-linux-x64.tgz \

2223

--output-dir .artifacts/qa-e2e/telegram-user-crabbox/pr-review

2324

```

@@ -39,7 +40,8 @@ For deterministic visual repros, put the exact mock-model reply in a file and

3940

pass it to `start`:

40414142

```bash

42-

pnpm qa:telegram-user:crabbox -- start \

43+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

44+

"$proof_cmd" start \

4345

--tdlib-url http://artifacts.openclaw.ai/tdlib-v1.8.0-linux-x64.tgz \

4446

--mock-response-file .artifacts/qa-e2e/telegram-user-crabbox/reply.txt \

4547

--output-dir .artifacts/qa-e2e/telegram-user-crabbox/pr-review

@@ -55,7 +57,8 @@ For visual proof, first send or identify a bottom marker message, then open the

5557

group/topic directly by message id:

56585759

```bash

58-

pnpm qa:telegram-user:crabbox -- view \

60+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

61+

"$proof_cmd" view \

5962

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json \

6063

--message-id <message-id>

6164

```

@@ -77,7 +80,8 @@ Bottom behavior matters:

7780

Send as the real Telegram user:

78817982

```bash

80-

pnpm qa:telegram-user:crabbox -- send \

83+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

84+

"$proof_cmd" send \

8185

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json \

8286

--text /status

8387

```

@@ -87,7 +91,8 @@ For slash commands, omit the bot username; the runner targets the SUT bot.

8791

Run arbitrary commands on the Crabbox:

88928993

```bash

90-

pnpm qa:telegram-user:crabbox -- run \

94+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

95+

"$proof_cmd" run \

9196

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json \

9297

-- bash -lc 'source /tmp/openclaw-telegram-user-crabbox/env.sh && python3 /tmp/openclaw-telegram-user-crabbox/user-driver.py transcript --limit 20 --json'

9398

```

@@ -106,14 +111,16 @@ python3 /tmp/openclaw-telegram-user-crabbox/user-driver.py probe --text '@{sut}

106111

Capture the current desktop without ending the session:

107112108113

```bash

109-

pnpm qa:telegram-user:crabbox -- screenshot \

114+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

115+

"$proof_cmd" screenshot \

110116

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json

111117

```

112118113119

Check lease state and get the WebVNC command:

114120115121

```bash

116-

pnpm qa:telegram-user:crabbox -- status \

122+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

123+

"$proof_cmd" status \

117124

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json

118125

```

119126

@@ -122,7 +129,8 @@ pnpm qa:telegram-user:crabbox -- status \

122129

Always finish or explicitly keep the box:

123130124131

```bash

125-

pnpm qa:telegram-user:crabbox -- finish \

132+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

133+

"$proof_cmd" finish \

126134

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json \

127135

--preview-crop telegram-window

128136

```

@@ -150,7 +158,8 @@ Attach only the useful visual artifact to the PR unless logs are needed. The

150158

runner is GIF-only by default:

151159152160

```bash

153-

pnpm qa:telegram-user:crabbox -- publish \

161+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

162+

"$proof_cmd" publish \

154163

--session .artifacts/qa-e2e/telegram-user-crabbox/pr-review/session.json \

155164

--pr <pr-number> \

156165

--summary 'Telegram real-user Crabbox session motion GIF'

@@ -189,7 +198,8 @@ experiments unless those artifacts are explicitly needed.

189198

For a fast one-shot check, use:

190199191200

```bash

192-

pnpm qa:telegram-user:crabbox -- --text /status

201+

proof_cmd="${OPENCLAW_TELEGRAM_USER_PROOF_CMD:-openclaw-telegram-user-crabbox-proof}"

202+

"$proof_cmd" --text /status

193203

```

194204195205

This is a start/send/finish shortcut. Prefer the held session for PR review,