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

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
M
MIT News - Artificial intelligence
美团技术团队
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
有赞技术团队
有赞技术团队
L
LangChain Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
S
SegmentFault 最新的问题
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
B
Blog
I
InfoQ

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: harden Mantis Slack desktop gateway proof · openclaw...
steipete · 2026-05-05 · via Recent Commits to openclaw:main

@@ -100,6 +100,14 @@ type MantisSlackDesktopSmokeSummary = {

100100

slackUrl?: string;

101101

startedAt: string;

102102

status: "pass" | "fail";

103+

warning?: string;

104+

};

105+106+

type SlackDesktopRemoteMetadata = {

107+

gatewayAlive?: boolean;

108+

gatewayPid?: string;

109+

openedUrl?: string;

110+

qaExitCode?: number;

103111

};

104112105113

const DEFAULT_PROVIDER = "hetzner";

@@ -183,6 +191,31 @@ async function pathExists(filePath: string) {

183191

}

184192

}

185193194+

async function readRemoteMetadata(

195+

outputDir: string,

196+

): Promise<SlackDesktopRemoteMetadata | undefined> {

197+

const metadataPath = path.join(outputDir, "remote-metadata.json");

198+

if (!(await pathExists(metadataPath))) {

199+

return undefined;

200+

}

201+

try {

202+

const parsed = JSON.parse(await fs.readFile(metadataPath, "utf8")) as unknown;

203+

if (!parsed || typeof parsed !== "object") {

204+

return undefined;

205+

}

206+

const candidate = parsed as Record<string, unknown>;

207+

return {

208+

gatewayAlive:

209+

typeof candidate.gatewayAlive === "boolean" ? candidate.gatewayAlive : undefined,

210+

gatewayPid: typeof candidate.gatewayPid === "string" ? candidate.gatewayPid : undefined,

211+

openedUrl: typeof candidate.openedUrl === "string" ? candidate.openedUrl : undefined,

212+

qaExitCode: typeof candidate.qaExitCode === "number" ? candidate.qaExitCode : undefined,

213+

};

214+

} catch {

215+

return undefined;

216+

}

217+

}

218+186219

async function resolveCrabboxBin(params: {

187220

env: NodeJS.ProcessEnv;

188221

explicit?: string;

@@ -444,7 +477,8 @@ if [ "$setup_gateway" = "1" ]; then

444477

--window-size=1440,1000 \

445478

--window-position=0,0 \

446479

--class=mantis-slack-desktop-smoke \

447-

"$slack_url" >"$out/chrome.log" 2>&1 &

480+

"$slack_url" </dev/null >"$out/chrome.log" 2>&1 &

481+

disown "$!" >/dev/null 2>&1 || true

448482

else

449483

"$browser_bin" \

450484

--user-data-dir="$profile" \

@@ -496,9 +530,16 @@ qa_status=0

496530

MANTIS_SLACK_PATCH

497531

pnpm openclaw config patch --file "$out/slack.socket.patch.json5" --dry-run

498532

pnpm openclaw config patch --file "$out/slack.socket.patch.json5"

499-

nohup pnpm openclaw gateway run --dev --allow-unconfigured --port 38973 --cli-backend-logs >"$out/openclaw-gateway.log" 2>&1 &

500-

echo "$!" >"$out/openclaw-gateway.pid"

533+

nohup pnpm openclaw gateway run --dev --allow-unconfigured --port 38973 --cli-backend-logs </dev/null >"$out/openclaw-gateway.log" 2>&1 &

534+

gateway_pid="$!"

535+

echo "$gateway_pid" >"$out/openclaw-gateway.pid"

501536

sleep 12

537+

if ! kill -0 "$gateway_pid" >/dev/null 2>&1; then

538+

echo "OpenClaw gateway exited during startup." >&2

539+

wait "$gateway_pid" || true

540+

exit 1

541+

fi

542+

disown "$gateway_pid" >/dev/null 2>&1 || true

502543

else

503544

qa_args=(openclaw qa slack --repo-root . --output-dir "$out/slack-qa" --provider-mode "$provider_mode" --model "$primary_model" --alt-model "$alternate_model" --credential-source "$credential_source" --credential-role "$credential_role")

504545

if [ "$fast_mode" = "1" ]; then

@@ -522,6 +563,8 @@ cat >"$out/remote-metadata.json" <<MANTIS_REMOTE_METADATA

522563

"display": "$DISPLAY",

523564

"openedUrl": "$slack_url",

524565

"gatewaySetup": $setup_gateway,

566+

"gatewayAlive": $(if [ "$setup_gateway" = "1" ] && [ -f "$out/openclaw-gateway.pid" ] && kill -0 "$(cat "$out/openclaw-gateway.pid")" >/dev/null 2>&1; then echo true; else echo false; fi),

567+

"gatewayPid": "$(if [ -f "$out/openclaw-gateway.pid" ]; then cat "$out/openclaw-gateway.pid"; fi)",

525568

"gatewayPort": 38973,

526569

"qaExitCode": $qa_status,

527570

"credentialSource": "$credential_source",

@@ -776,6 +819,7 @@ export async function runMantisSlackDesktopSmoke(

776819

let screenshotPath: string | undefined;

777820

let slackQaDir: string | undefined;

778821

let videoPath: string | undefined;

822+

let remoteMetadata: SlackDesktopRemoteMetadata | undefined;

779823780824

try {

781825

const preparedCredentialEnv = await prepareGatewayCredentialEnv({

@@ -855,13 +899,22 @@ export async function runMantisSlackDesktopSmoke(

855899

if (!(await pathExists(videoPath))) {

856900

videoPath = undefined;

857901

}

902+

remoteMetadata = await readRemoteMetadata(outputDir);

858903

slackQaDir = path.join(outputDir, "slack-qa");

859904

if (!(await pathExists(screenshotPath))) {

860905

throw new Error("Slack desktop screenshot was not copied back from Crabbox.");

861906

}

862-

if (remoteRunError) {

907+

const gatewaySetupCompleted =

908+

gatewaySetup && remoteMetadata?.qaExitCode === 0 && remoteMetadata.gatewayAlive === true;

909+

if (remoteRunError && !gatewaySetupCompleted) {

863910

throw remoteRunError;

864911

}

912+

if (gatewaySetup && !gatewaySetupCompleted) {

913+

throw new Error("Slack desktop gateway setup did not report a live OpenClaw gateway.");

914+

}

915+

const ignoredRemoteRunError = remoteRunError

916+

? `Crabbox returned a non-zero command status after the gateway setup completed: ${formatErrorMessage(remoteRunError)}`

917+

: undefined;

865918

summary = {

866919

artifacts: {

867920

reportPath,

@@ -882,9 +935,10 @@ export async function runMantisSlackDesktopSmoke(

882935

finishedAt: new Date().toISOString(),

883936

outputDir,

884937

remoteOutputDir,

885-

slackUrl,

938+

slackUrl: trimToValue(remoteMetadata?.openedUrl) ?? slackUrl,

886939

startedAt: startedAt.toISOString(),

887940

status: "pass",

941+

warning: ignoredRemoteRunError,

888942

};

889943

return {

890944

outputDir,