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

推荐订阅源

月光博客
月光博客
J
Java Code Geeks
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
U
Unit 42
B
Blog
宝玉的分享
宝玉的分享
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - Franky
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
The GitHub Blog
The GitHub 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(agents): delete unused helper paths · openclaw/o...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -675,9 +675,10 @@ is disabled, uninstalled, or rolled back:

675675

clearCodeModeNamespacesForPlugin(pluginId);

676676

```

677677
678-

Use `unregisterCodeModeNamespace(namespaceId)` only when removing one known

679-

namespace. Tests can call `clearCodeModeNamespacesForTest()` to avoid leaking

680-

registrations across cases.

678+

Code-mode cleanup is plugin-owned; clear the plugin's namespace registrations

679+

when its lifecycle ends instead of keeping per-namespace teardown handles. Tests

680+

can call `clearCodeModeNamespacesForTest()` to avoid leaking registrations

681+

across cases.

681682
682683

### Test checklist

683684
Original file line numberDiff line numberDiff line change

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

2020

} from "../infra/exec-approvals.js";

2121

import { requestHeartbeat } from "../infra/heartbeat-wake.js";

2222

import {

23-

isDangerousHostInheritedEnvVarName,

2423

sanitizeHostInheritedEnvEntry,

2524

} from "../infra/host-env-security.js";

2625

import { findPathKey, mergePathPrepend, removePathPrepend } from "../infra/path-prepend.js";

@@ -105,27 +104,6 @@ export function sanitizeHostBaseEnv(env: Record<string, string>): Record<string,

105104

}

106105

return sanitized;

107106

}

108-

/** Validates caller-provided host env, rejecting dangerous vars and PATH overrides. */

109-

export function validateHostEnv(env: Record<string, string>): void {

110-

for (const key of Object.keys(env)) {

111-

const upperKey = key.toUpperCase();

112-
113-

// 1. Block known dangerous variables (Fail Closed)

114-

if (isDangerousHostInheritedEnvVarName(upperKey)) {

115-

throw new Error(

116-

`Security Violation: Environment variable '${key}' is forbidden during host execution.`,

117-

);

118-

}

119-
120-

// 2. Strictly block PATH modification on host

121-

// Allowing custom PATH on the gateway/node can lead to binary hijacking.

122-

if (upperKey === "PATH") {

123-

throw new Error(

124-

"Security Violation: Custom 'PATH' variable is forbidden during host execution.",

125-

);

126-

}

127-

}

128-

}

129107

/** Default retained aggregate output cap for exec sessions. */

130108

export const DEFAULT_MAX_OUTPUT = clampWithDefault(

131109

readEnvInt("OPENCLAW_BASH_MAX_OUTPUT_CHARS", "PI_BASH_MAX_OUTPUT_CHARS"),

Original file line numberDiff line numberDiff line change

@@ -1291,10 +1291,3 @@ export function buildRunClaudeCliAgentParams(params: RunClaudeCliAgentParams): R

12911291

senderIsOwner: params.senderIsOwner,

12921292

};

12931293

}

1294-
1295-

/** Runs the legacy Claude CLI wrapper through the generic CLI runner. */

1296-

export async function runClaudeCliAgent(

1297-

params: RunClaudeCliAgentParams,

1298-

): Promise<EmbeddedAgentRunResult> {

1299-

return runCliAgent(buildRunClaudeCliAgentParams(params));

1300-

}

Original file line numberDiff line numberDiff line change

@@ -283,11 +283,6 @@ export function registerCodeModeNamespaceForPlugin(

283283

registryState.registrations.set(normalized.id, normalized);

284284

}

285285
286-

/** Removes one namespace registration by id. */

287-

export function unregisterCodeModeNamespace(namespaceId: string): boolean {

288-

return registryState.registrations.delete(namespaceId.trim());

289-

}

290-
291286

/** Lists registered namespaces in deterministic id order. */

292287

export function listCodeModeNamespaces(): RegisteredCodeModeNamespace[] {

293288

return [...registryState.registrations.values()].toSorted((a, b) => a.id.localeCompare(b.id));

Original file line numberDiff line numberDiff line change

@@ -65,22 +65,6 @@ const IDENTIFIER_PRESERVATION_INSTRUCTIONS =

6565

"Preserve all opaque identifiers exactly as written (no shortening or reconstruction), " +

6666

"including UUIDs, hashes, IDs, hostnames, IPs, ports, URLs, and file names.";

6767
68-

const HANDOFF_INSTRUCTIONS = [

69-

"Generate a concise recovery briefing for a new LLM taking over this session.",

70-

"The previous model hit a quota limit and you are providing the context for a smooth handoff.",

71-

"",

72-

"LEADER HIERARCHY REINFORCEMENT:",

73-

"- Explicitly state that the new model is the LEADER (Orchestrator).",

74-

"- Identify any active autonomous units (like AutoClaw) as SUBORDINATES.",

75-

"- Instruct the new model to NOT perform the subordinate's task, but to supervise and provide strategic commands.",

76-

"",

77-

"MUST CAPTURE:",

78-

"- Current high-level goal and project path.",

79-

"- Status of the latest tool executions (especially AutoClaw/Subagents).",

80-

"- Critical files currently being modified.",

81-

"- Pending items and next intended steps.",

82-

].join("\n");

83-
8468

/** Optional instruction policy for preserving identifiers during compaction. */

8569

export type CompactionSummarizationInstructions = {

8670

identifierPolicy?: AgentCompactionIdentifierPolicy;

@@ -396,36 +380,6 @@ export async function summarizeInStages(params: {

396380

});

397381

}

398382
399-

/**

400-

* Generates a concise handoff summary for model transitions, enforcing a 4000 token limit.

401-

*/

402-

export async function summarizeForHandoff(params: {

403-

messages: AgentMessage[];

404-

model: NonNullable<ExtensionContext["model"]>;

405-

apiKey: string;

406-

headers?: Record<string, string>;

407-

signal: AbortSignal;

408-

maxChunkTokens: number;

409-

contextWindow: number;

410-

customInstructions?: string;

411-

summarizationInstructions?: CompactionSummarizationInstructions;

412-

}): Promise<string> {

413-

const custom = params.customInstructions?.trim();

414-

const handoffInstructions = custom

415-

? `${HANDOFF_INSTRUCTIONS}\n\n${custom}`

416-

: HANDOFF_INSTRUCTIONS;

417-
418-

// Use a hard cap of 4000 tokens for the handoff summary as per plan

419-

const handoffMaxTokens = 4000;

420-
421-

return summarizeWithFallback({

422-

...params,

423-

reserveTokens: SUMMARIZATION_OVERHEAD_TOKENS,

424-

maxChunkTokens: Math.min(params.maxChunkTokens, handoffMaxTokens),

425-

customInstructions: handoffInstructions,

426-

});

427-

}

428-
429383

/** Resolves a positive context-window token count from model metadata. */

430384

export function resolveContextWindowTokens(model?: ExtensionContext["model"]): number {

431385

const effective =

Original file line numberDiff line numberDiff line change

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

11

/**

22

* Google/Gemini-specific embedded-agent runtime helpers.

33

*/

4-

import { isGemma4ModelId } from "../../shared/google-models.js";

54

import { sanitizeGoogleTurnOrdering } from "./bootstrap.js";

65
76

/** Detects Google-owned embedded runtime APIs. */

87

export function isGoogleModelApi(api?: string | null): boolean {

98

return api === "google-gemini-cli" || api === "google-generative-ai";

109

}

1110
12-

/** Returns true for Gemma models whose reasoning payload must be stripped. */

13-

export function isGemma4ModelRequiringReasoningStrip(modelId?: string | null): boolean {

14-

return isGemma4ModelId(modelId);

15-

}

16-
1711

// Re-exported from the helper barrel so Google-specific callers do not import

1812

// bootstrap internals directly.

1913

export { sanitizeGoogleTurnOrdering };

Original file line numberDiff line numberDiff line change

@@ -4,7 +4,6 @@ import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

44

const state = vi.hoisted(() => ({

55

abortEmbeddedAgentRunMock: vi.fn(),

66

requestEmbeddedRunModelSwitchMock: vi.fn(),

7-

consumeEmbeddedRunModelSwitchMock: vi.fn(),

87

resolveDefaultModelForAgentMock: vi.fn(),

98

resolvePersistedSelectedModelRefMock: vi.fn(),

109

loadSessionStoreMock: vi.fn(),

@@ -22,8 +21,6 @@ vi.mock("./embedded-agent-runner/runs.js", () => ({

2221

abortEmbeddedAgentRun: (...args: unknown[]) => state.abortEmbeddedAgentRunMock(...args),

2322

requestEmbeddedRunModelSwitch: (...args: unknown[]) =>

2423

state.requestEmbeddedRunModelSwitchMock(...args),

25-

consumeEmbeddedRunModelSwitch: (...args: unknown[]) =>

26-

state.consumeEmbeddedRunModelSwitchMock(...args),

2724

}));

2825
2926

vi.mock("./model-selection.js", async () => {

@@ -86,7 +83,6 @@ describe("live model switch", () => {

8683

beforeEach(() => {

8784

state.abortEmbeddedAgentRunMock.mockReset().mockReturnValue(false);

8885

state.requestEmbeddedRunModelSwitchMock.mockReset();

89-

state.consumeEmbeddedRunModelSwitchMock.mockReset();

9086

state.embeddedAgentModuleImported = false;

9187

state.resolveDefaultModelForAgentMock

9288

.mockReset()

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,6 @@ import { loadSessionStore, updateSessionStore } from "../config/sessions/store.j

66

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

77

import {

88

abortEmbeddedAgentRun,

9-

consumeEmbeddedRunModelSwitch,

109

requestEmbeddedRunModelSwitch,

1110

type EmbeddedRunModelSwitchRequest,

1211

} from "./embedded-agent-runner/runs.js";

@@ -91,12 +90,6 @@ export function requestLiveSessionModelSwitch(params: {

9190

return true;

9291

}

9392
94-

export function consumeLiveSessionModelSwitch(

95-

sessionId: string,

96-

): LiveSessionModelSelection | undefined {

97-

return consumeEmbeddedRunModelSwitch(sessionId);

98-

}

99-
10093

function isAlreadyAppliedOpenAICodexRuntimePromotion(

10194

current: { provider: string; model: string },

10295

next: LiveSessionModelSelection,