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

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare 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
refactor: hide core helper internals · openclaw/openclaw@...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -5,7 +5,6 @@ import { countPendingDescendantRunsFromRuns } from "../../../agents/subagent-reg

55

import { getSubagentRunsSnapshotForRead } from "../../../agents/subagent-registry-state.js";

66

import type { SubagentRunRecord } from "../../../agents/subagent-registry.types.js";

77

import {

8-

extractAssistantText,

98

resolveInternalSessionKey,

109

resolveMainSessionAlias,

1110

stripToolMessages,

@@ -27,7 +26,7 @@ import {

2726

type SubagentTargetResolution,

2827

} from "../subagents-utils.js";

2928
30-

export { extractAssistantText, stripToolMessages };

29+

export { stripToolMessages };

3130

export { resolveCommandSurfaceChannel, resolveChannelAccountId };

3231

export type { ChatMessage } from "../commands-subagents-text.js";

3332

@@ -67,7 +66,7 @@ type SubagentsAction =

6766

| "agents"

6867

| "help";

6968
70-

export type SubagentsCommandParams = Parameters<CommandHandler>[0];

69+

type SubagentsCommandParams = Parameters<CommandHandler>[0];

7170
7271

export type SubagentsCommandContext = {

7372

params: SubagentsCommandParams;

@@ -213,7 +212,7 @@ export function resolveSubagentsAction(params: {

213212

return "steer";

214213

}

215214
216-

export type FocusTargetResolution = {

215+

type FocusTargetResolution = {

217216

targetKind: "subagent" | "acp";

218217

targetSessionKey: string;

219218

agentId: string;

Original file line numberDiff line numberDiff line change

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

99

import { ErrorCodes, errorShape } from "../protocol/index.js";

1010

import type { GatewayClient, GatewayRequestContext, RespondFn } from "./types.js";

1111
12-

export const APPROVAL_NOT_FOUND_DETAILS = {

12+

const APPROVAL_NOT_FOUND_DETAILS = {

1313

reason: ErrorCodes.APPROVAL_NOT_FOUND,

1414

remediation: "Re-request the action; pending approvals are cleared after expiry or restart.",

1515

} as const;

@@ -51,7 +51,7 @@ export function isApprovalDecision(value: string): value is ExecApprovalDecision

5151

return value === "allow-once" || value === "allow-always" || value === "deny";

5252

}

5353
54-

export function respondUnknownOrExpiredApproval(respond: RespondFn): void {

54+

function respondUnknownOrExpiredApproval(respond: RespondFn): void {

5555

respond(

5656

false,

5757

undefined,

Original file line numberDiff line numberDiff line change

@@ -70,7 +70,6 @@ import type { GatewayRequestHandlers } from "./types.js";

7070
7171

export {

7272

clearNodeWakeState,

73-

NODE_WAKE_RECONNECT_POLL_MS,

7473

NODE_WAKE_RECONNECT_RETRY_WAIT_MS,

7574

NODE_WAKE_RECONNECT_WAIT_MS,

7675

} from "./nodes-wake-state.js";

Original file line numberDiff line numberDiff line change

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

1-

export const RESERVED_ADMIN_GATEWAY_METHOD_PREFIXES = [

1+

const RESERVED_ADMIN_GATEWAY_METHOD_PREFIXES = [

22

"exec.approvals.",

33

"config.",

44

"wizard.",

55

"update.",

66

] as const;

77
8-

export const RESERVED_ADMIN_GATEWAY_METHOD_SCOPE = "operator.admin" as const;

8+

const RESERVED_ADMIN_GATEWAY_METHOD_SCOPE = "operator.admin" as const;

99
10-

export function isReservedAdminGatewayMethod(method: string): boolean {

10+

function isReservedAdminGatewayMethod(method: string): boolean {

1111

return RESERVED_ADMIN_GATEWAY_METHOD_PREFIXES.some((prefix) => method.startsWith(prefix));

1212

}

1313