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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

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 agent core helper exports · openclaw/openc...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -102,13 +102,13 @@ const modifiableNamedKeys = new Set([

102102

"dc",

103103

]);

104104
105-

export type KeyEncodingRequest = {

105+

type KeyEncodingRequest = {

106106

keys?: string[];

107107

hex?: string[];

108108

literal?: string;

109109

};

110110
111-

export type KeyEncodingResult = {

111+

type KeyEncodingResult = {

112112

data: string;

113113

warnings: string[];

114114

};

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import type { OpenClawConfig } from "../config/types.openclaw.js";

33

import { normalizeOptionalLowercaseString } from "../shared/string-coerce.js";

44

import { resolveChannelPromptCapabilities } from "./channel-tools.js";

55
6-

export function mergeRuntimeCapabilities(

6+

function mergeRuntimeCapabilities(

77

base?: readonly string[] | null,

88

additions: readonly string[] = [],

99

): string[] | undefined {

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@ import type { SessionManager } from "@mariozechner/pi-coding-agent";

22
33

const RAW_APPEND_MESSAGE = Symbol("openclaw.session.rawAppendMessage");

44
5-

export type SessionManagerWithRawAppend = SessionManager & {

5+

type SessionManagerWithRawAppend = SessionManager & {

66

[RAW_APPEND_MESSAGE]?: SessionManager["appendMessage"];

77

};

88
Original file line numberDiff line numberDiff line change

@@ -10,7 +10,7 @@ import {

1010

import { resolveLiveToolResultMaxChars } from "./pi-embedded-runner/tool-result-truncation.js";

1111

import { installSessionToolResultGuard } from "./session-tool-result-guard.js";

1212
13-

export type GuardedSessionManager = SessionManager & {

13+

type GuardedSessionManager = SessionManager & {

1414

/** Flush any synthetic tool results for pending tool calls. Idempotent. */

1515

flushPendingToolResults?: () => void;

1616

/** Clear pending tool calls without persisting synthetic tool results. Idempotent. */

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

1-

export type PendingToolCall = { id: string; name?: string };

1+

type PendingToolCall = { id: string; name?: string };

22
3-

export type PendingToolCallState = {

3+

type PendingToolCallState = {

44

size: () => number;

55

entries: () => IterableIterator<[string, string | undefined]>;

66

getToolName: (id: string) => string | undefined;

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

export const SESSION_WRITE_LOCK_TIMEOUT_CODE = "OPENCLAW_SESSION_WRITE_LOCK_TIMEOUT";

1+

const SESSION_WRITE_LOCK_TIMEOUT_CODE = "OPENCLAW_SESSION_WRITE_LOCK_TIMEOUT";

22
33

export class SessionWriteLockTimeoutError extends Error {

44

readonly code = SESSION_WRITE_LOCK_TIMEOUT_CODE;

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

export type InstallCommandResult = {

1+

type InstallCommandResult = {

22

code: number | null;

33

stdout: string;

44

stderr: string;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import type { AssistantMessage, StopReason, Usage } from "@mariozechner/pi-ai";

22
3-

export type StreamModelDescriptor = {

3+

type StreamModelDescriptor = {

44

api: string;

55

provider: string;

66

id: string;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import { normalizeToolName } from "./tool-policy.js";

22
3-

export type ExplicitToolAllowlistSource = {

3+

type ExplicitToolAllowlistSource = {

44

label: string;

55

entries: string[];

66

};

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import { normalizeLowercaseStringOrEmpty } from "../shared/string-coerce.js";

22
3-

export const TOOL_CALL_NAME_MAX_CHARS = 64;

4-

export const TOOL_CALL_NAME_RE = /^[A-Za-z0-9_:.-]+$/;

3+

const TOOL_CALL_NAME_MAX_CHARS = 64;

4+

const TOOL_CALL_NAME_RE = /^[A-Za-z0-9_:.-]+$/;

55
66

export const REDACTED_SESSIONS_SPAWN_ATTACHMENT_CONTENT = "__OPENCLAW_REDACTED__";

77

export const SESSIONS_SPAWN_ATTACHMENT_METADATA_KEYS = ["name", "encoding", "mimeType"] as const;

@@ -66,7 +66,7 @@ export function isRedactedSessionsSpawnAttachment(item: unknown): boolean {

6666

return true;

6767

}

6868
69-

export type SessionsSpawnAttachmentToolCallBlock = {

69+

type SessionsSpawnAttachmentToolCallBlock = {

7070

name?: unknown;

7171

input?: unknown;

7272

arguments?: unknown;