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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
月光博客
月光博客
S
SegmentFault 最新的问题
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI

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(auto-reply): hide local reply types · openclaw/o...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -75,7 +75,7 @@ export function formatModelOverrideResetEvent(params: {

7575

return `Model override not allowed for this agent; reverted to ${params.initialModelLabel}.`;

7676

}

7777
78-

export type ApplyDirectiveResult =

78+

type ApplyDirectiveResult =

7979

| { kind: "reply"; reply: ReplyPayload | ReplyPayload[] | undefined }

8080

| {

8181

kind: "continue";

Original file line numberDiff line numberDiff line change

@@ -105,7 +105,7 @@ function resolveDirectiveCommandText(params: { ctx: MsgContext; sessionCtx: Temp

105105

};

106106

}

107107
108-

export type ReplyDirectiveContinuation = {

108+

type ReplyDirectiveContinuation = {

109109

commandSource: string;

110110

command: ReturnType<typeof buildCommandContext>;

111111

allowTextCommands: boolean;

@@ -145,7 +145,7 @@ export type ReplyDirectiveContinuation = {

145145

};

146146

};

147147
148-

export type ReplyDirectiveResult =

148+

type ReplyDirectiveResult =

149149

| { kind: "reply"; reply: ReplyPayload | ReplyPayload[] | undefined }

150150

| { kind: "continue"; result: ReplyDirectiveContinuation };

151151
Original file line numberDiff line numberDiff line change

@@ -130,7 +130,7 @@ function isMentionOnlyResidualText(text: string, wasMentioned: boolean | undefin

130130

}

131131
132132

/** Result of attempting to handle an inbound message as an inline action. */

133-

export type InlineActionResult =

133+

type InlineActionResult =

134134

| { kind: "reply"; reply: ReplyPayload | ReplyPayload[] | undefined }

135135

| {

136136

kind: "continue";

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ import type { ActiveRunQueueAction } from "./queue-policy.js";

55

import type { QueueSettings } from "./queue.js";

66
77

/** Snapshot of the active reply run state used by queue admission. */

8-

export type ReplyRunQueueBusyState = {

8+

type ReplyRunQueueBusyState = {

99

activeSessionId: string | undefined;

1010

isActive: boolean;

1111

isStreaming: boolean;

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@

22

const DEFAULT_PENDING_TOOL_DRAIN_IDLE_TIMEOUT_MS = 30_000;

33
44

/** Result from waiting for pending tool tasks before final delivery. */

5-

export type PendingToolTaskDrainResult =

5+

type PendingToolTaskDrainResult =

66

| { kind: "settled" }

77

| { kind: "timeout"; remaining: number };

88
Original file line numberDiff line numberDiff line change

@@ -10,7 +10,7 @@ import { parseReplyDirectives } from "./reply-directives.js";

1010

import { applyReplyTagsToPayload, isRenderablePayload } from "./reply-payloads.js";

1111

import type { TypingSignaler } from "./typing-mode.js";

1212
13-

export type ReplyDirectiveParseMode = "always" | "auto" | "never";

13+

type ReplyDirectiveParseMode = "always" | "auto" | "never";

1414
1515

/** Parses inline reply directives into payload fields and silent-reply state. */

1616

export function normalizeReplyPayloadDirectives(params: {

Original file line numberDiff line numberDiff line change

@@ -16,7 +16,7 @@ export type ReplyDirectiveParseResult = {

1616

};

1717
1818

/** Options for extracting reply directives from model text. */

19-

export type ReplyDirectiveParseOptions = {

19+

type ReplyDirectiveParseOptions = {

2020

currentMessageId?: string;

2121

silentToken?: string;

2222

extractMarkdownImages?: boolean;

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import { normalizeOptionalString } from "@openclaw/normalization-core/string-coe

33

import type { ReplyToMode } from "../../config/types.js";

44
55

/** Stateful planner for reply-to ids across one delivery flow. */

6-

export type ReplyReferencePlanner = {

6+

type ReplyReferencePlanner = {

77

/** Returns the effective reply/thread id for the next send without updating state. */

88

peek(): string | undefined;

99

/** Returns the effective reply/thread id for the next send and updates state. */

Original file line numberDiff line numberDiff line change

@@ -62,7 +62,7 @@ function replyDeliverySourceMatchesRoute(params: {

6262

);

6363

}

6464
65-

export type RouteReplyParams = {

65+

type RouteReplyParams = {

6666

/** The reply payload to send. */

6767

payload: ReplyPayload;

6868

/** The originating channel type. */

@@ -105,7 +105,7 @@ export type RouteReplyParams = {

105105

runId?: string;

106106

};

107107
108-

export type RouteReplyResult = {

108+

type RouteReplyResult = {

109109

/** Whether the reply was sent successfully. */

110110

ok: boolean;

111111

/** True when a hook intentionally suppressed provider delivery. */

Original file line numberDiff line numberDiff line change

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

88

} from "../../plugins/hook-types.js";

99
1010

/** Session identity attached to plugin session hook payloads. */

11-

export type SessionHookContext = {

11+

type SessionHookContext = {

1212

sessionId: string;

1313

sessionKey: string;

1414

agentId: string;