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

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

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
refactor: trim mattermost helper exports · openclaw/openc...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

File tree

  • extensions/mattermost/src

    • mattermost

Original file line numberDiff line numberDiff line change

@@ -17,8 +17,8 @@ import type {

1717

import { normalizeMattermostBaseUrl } from "./client.js";

1818

import type { OpenClawConfig } from "./runtime-api.js";

1919
20-

export type MattermostTokenSource = "env" | "config" | "none";

21-

export type MattermostBaseUrlSource = "env" | "config" | "none";

20+

type MattermostTokenSource = "env" | "config" | "none";

21+

type MattermostBaseUrlSource = "env" | "config" | "none";

2222
2323

export type ResolvedMattermostAccount = {

2424

accountId: string;

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ import {

99

const MATTERMOST_STREAM_MAX_CHARS = 4000;

1010

const DEFAULT_THROTTLE_MS = 1000;

1111
12-

export type MattermostDraftStream = {

12+

type MattermostDraftStream = {

1313

update: (text: string) => void;

1414

flush: () => Promise<void>;

1515

postId: () => string | undefined;

@@ -20,7 +20,7 @@ export type MattermostDraftStream = {

2020

forceNewMessage: () => void;

2121

};

2222
23-

export function normalizeMattermostDraftText(text: string, maxChars: number): string {

23+

function normalizeMattermostDraftText(text: string, maxChars: number): string {

2424

const trimmed = text.trim();

2525

if (!trimmed) {

2626

return "";

Original file line numberDiff line numberDiff line change

@@ -18,7 +18,7 @@ const SIGNED_CHANNEL_ID_CONTEXT_KEY = "__openclaw_channel_id";

1818

* Sent by Mattermost when a user clicks an action button.

1919

* See: https://developers.mattermost.com/integrate/plugins/interactive-messages/

2020

*/

21-

export type MattermostInteractionPayload = {

21+

type MattermostInteractionPayload = {

2222

user_id: string;

2323

user_name?: string;

2424

channel_id: string;

@@ -38,7 +38,7 @@ export type MattermostInteractionResponse = {

3838

ephemeral_text?: string;

3939

};

4040
41-

export type MattermostInteractionAuthorizationResult =

41+

type MattermostInteractionAuthorizationResult =

4242

| { ok: true }

4343

| { ok: false; statusCode?: number; response?: MattermostInteractionResponse };

4444

@@ -235,7 +235,7 @@ export function verifyInteractionToken(

235235
236236

// ── Button builder helpers ─────────────────────────────────────────────

237237
238-

export type MattermostButton = {

238+

type MattermostButton = {

239239

id: string;

240240

type: "button" | "select";

241241

name: string;

@@ -246,7 +246,7 @@ export type MattermostButton = {

246246

};

247247

};

248248
249-

export type MattermostAttachment = {

249+

type MattermostAttachment = {

250250

text?: string;

251251

actions?: MattermostButton[];

252252

[key: string]: unknown;

Original file line numberDiff line numberDiff line change

@@ -19,18 +19,18 @@ const ACTION_IDS = {

1919

back: "mdlback",

2020

} as const;

2121
22-

export type MattermostModelPickerEntry =

22+

type MattermostModelPickerEntry =

2323

| { kind: "summary" }

2424

| { kind: "providers" }

2525

| { kind: "models"; provider: string };

2626
27-

export type MattermostModelPickerState =

27+

type MattermostModelPickerState =

2828

| { action: "providers"; ownerUserId: string }

2929

| { action: "back"; ownerUserId: string }

3030

| { action: "list"; ownerUserId: string; provider: string; page: number }

3131

| { action: "select"; ownerUserId: string; provider: string; page: number; model: string };

3232
33-

export type MattermostModelPickerRenderedView = {

33+

type MattermostModelPickerRenderedView = {

3434

text: string;

3535

buttons: MattermostInteractiveButtonInput[][];

3636

};

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,7 @@ import {

66

import { normalizeMattermostBaseUrl, readMattermostError, type MattermostUser } from "./client.js";

77

import type { BaseProbeResult } from "./runtime-api.js";

88
9-

export type MattermostProbe = BaseProbeResult & {

9+

type MattermostProbe = BaseProbeResult & {

1010

status?: number | null;

1111

elapsedMs?: number | null;

1212

bot?: MattermostUser;

Original file line numberDiff line numberDiff line change

@@ -1,13 +1,13 @@

1-

export type ReconnectOutcome = "resolved" | "rejected";

1+

type ReconnectOutcome = "resolved" | "rejected";

22
3-

export type ShouldReconnectParams = {

3+

type ShouldReconnectParams = {

44

attempt: number;

55

delayMs: number;

66

outcome: ReconnectOutcome;

77

error?: unknown;

88

};

99
10-

export type RunWithReconnectOpts = {

10+

type RunWithReconnectOpts = {

1111

abortSignal?: AbortSignal;

1212

onError?: (err: unknown) => void;

1313

onReconnect?: (delayMs: number) => void;

Original file line numberDiff line numberDiff line change

@@ -49,7 +49,7 @@ type SlashHandlerMatch =

4949
5050

// ─── Per-account state ───────────────────────────────────────────────────────

5151
52-

export type SlashCommandAccountState = {

52+

type SlashCommandAccountState = {

5353

/** Tokens from registered/current commands, used for fast-path routing. */

5454

commandTokens: Set<string>;

5555

/** Registered command IDs for cleanup on shutdown. */

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ export type MattermostReplyToMode = "off" | "first" | "all" | "batched";

55

export type MattermostChatTypeKey = "direct" | "channel" | "group";

66
77

export type MattermostChatMode = "oncall" | "onmessage" | "onchar";

8-

export type MattermostNetworkConfig = {

8+

type MattermostNetworkConfig = {

99

/** Dangerous opt-in for self-hosted Mattermost on trusted private/internal hosts. */

1010

dangerouslyAllowPrivateNetwork?: boolean;

1111

};