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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
V
V2EX
M
MIT News - Artificial intelligence
Vercel News
Vercel News
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
D
Docker
V
Visual Studio Blog
博客园 - 叶小钗
美团技术团队
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(mattermost): tag typed text slash control commands · ...
amknight · 2026-05-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -509,6 +509,90 @@ describe("mattermost inbound user posts", () => {

509509

const ctx = mockState.dispatchReplyFromConfig.mock.calls.at(0)?.[0].ctx;

510510

expect(ctx?.BodyForAgent).toBe("hello /status");

511511

expect(ctx?.CommandAuthorized).toBe(false);

512+

// Inline non-control text must not be tagged as an explicit text-slash command turn —

513+

// only authorized control commands take the source-reply suppression bypass.

514+

expect(ctx?.CommandSource).toBeUndefined();

515+

});

516+
517+

// Regression for issue #86664: typed `/reset` (and `/new`) on a Mattermost DM under

518+

// message_tool_only source delivery (e.g. Codex harness default) silently dropped the

519+

// acknowledgement because the inbound context was not tagged as an explicit text-slash

520+

// command turn. The explicit-command exception in source-reply-delivery-mode.ts only

521+

// fires when CommandSource is "text" (or "native") AND CommandAuthorized is true. Mirrors

522+

// the iMessage fix from #82642.

523+

it("tags authorized typed text-slash control commands with CommandSource: text", async () => {

524+

const socket = new FakeWebSocket();

525+

const abortController = new AbortController();

526+

mockState.abortController = abortController;

527+

const directConfig: OpenClawConfig = {

528+

channels: {

529+

mattermost: {

530+

enabled: true,

531+

baseUrl: "https://mattermost.example.com",

532+

botToken: "bot-token",

533+

chatmode: "onmessage",

534+

dmPolicy: "allowlist",

535+

groupPolicy: "open",

536+

allowFrom: ["user-1"],

537+

},

538+

},

539+

};

540+

const isControlCommandMessage = vi.fn((text?: string) =>

541+

["/reset", "/new"].includes(text?.trim() ?? ""),

542+

);

543+

const shouldComputeCommandAuthorized = vi.fn(() => true);

544+

mockState.runtimeCore = createRuntimeCore(directConfig, undefined, {

545+

isControlCommandMessage,

546+

shouldComputeCommandAuthorized,

547+

shouldHandleTextCommands: () => true,

548+

});

549+

mockState.resolveChannelInfo.mockResolvedValue({

550+

id: "dm-1",

551+

name: "",

552+

display_name: "",

553+

team_id: "team-1",

554+

type: "D",

555+

});

556+
557+

const monitor = monitorMattermostProvider({

558+

config: directConfig,

559+

runtime: testRuntime(),

560+

abortSignal: abortController.signal,

561+

webSocketFactory: () => socket,

562+

});

563+
564+

await vi.waitFor(() => {

565+

expect(socket.openListenerCount).toBeGreaterThan(0);

566+

});

567+

socket.emitOpen();

568+
569+

await socket.emitMessage({

570+

event: "posted",

571+

data: {

572+

channel_id: "dm-1",

573+

sender_name: "alice",

574+

post: JSON.stringify({

575+

id: "post-reset",

576+

channel_id: "dm-1",

577+

user_id: "user-1",

578+

message: " /reset",

579+

create_at: 1_714_000_000_000,

580+

}),

581+

},

582+

broadcast: {

583+

channel_id: "dm-1",

584+

user_id: "user-1",

585+

},

586+

});

587+

socket.emitClose(1000);

588+

await monitor;

589+
590+

expect(mockState.dispatchReplyFromConfig).toHaveBeenCalledTimes(1);

591+

const ctx = mockState.dispatchReplyFromConfig.mock.calls.at(0)?.[0].ctx;

592+

expect(ctx?.BodyForAgent).toBe("/reset");

593+

expect(ctx?.CommandBody).toBe("/reset");

594+

expect(ctx?.CommandAuthorized).toBe(true);

595+

expect(ctx?.CommandSource).toBe("text");

512596

});

513597
514598

it("uses websocket channel type when REST channel lookup fails", async () => {

Original file line numberDiff line numberDiff line change

@@ -1605,6 +1605,11 @@ export async function monitorMattermostProvider(opts: MonitorMattermostOpts = {}

16051605

Timestamp: typeof post.create_at === "number" ? post.create_at : undefined,

16061606

WasMentioned: kind !== "direct" ? mentionDecision.effectiveWasMentioned : undefined,

16071607

CommandAuthorized: commandAuthorized,

1608+

// Tag typed text-slash control commands (e.g. ` /new`, ` /reset` sent via the regular

1609+

// post path rather than Mattermost's native slash UI) so the explicit-command turn

1610+

// exception in source-reply-delivery-mode.ts surfaces their acknowledgements under

1611+

// message_tool_only delivery modes (e.g. Codex harness DMs). Mirrors iMessage #82642.

1612+

CommandSource: commandAuthorized && isControlCommand ? ("text" as const) : undefined,

16081613

OriginatingChannel: "mattermost" as const,

16091614

OriginatingTo: to,

16101615

...mediaPayload,