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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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
docs: document gateway utility policies · openclaw/opencl...
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Active session shutdown tracker.

2+

// Remembers sessions needing `session_end` hooks during gateway shutdown/restart.

13

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

24
35

// Module-level tracker of sessions that have received `session_start` but not

@@ -39,6 +41,8 @@ export function forgetActiveSessionForShutdown(sessionId: string | undefined): v

3941

}

4042
4143

export function listActiveSessionsForShutdown(): ActiveSessionForShutdown[] {

44+

// Return a snapshot, not the backing map, so shutdown drains can iterate while

45+

// lifecycle hooks concurrently forget finalized sessions.

4246

return Array.from(trackedSessions.values());

4347

}

4448
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway assistant-event text extractor.

2+

// Normalizes provider stream event shapes into a display text delta.

13

import type { AgentEventPayload } from "../infra/agent-events.js";

24
35

// Agent stream events may carry assistant text as either incremental delta or

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway channel health policy.

2+

// Evaluates channel lifecycle snapshots for restart/readiness decisions.

13

import type { ChannelId } from "../channels/plugins/types.public.js";

24
35

type ChannelHealthSnapshot = {

@@ -131,6 +133,8 @@ export function resolveChannelRestartReason(

131133

snapshot: ChannelHealthSnapshot,

132134

evaluation: ChannelHealthEvaluation,

133135

): ChannelRestartReason {

136+

// Restart reasons are intentionally coarse: downstream logs/UI need stable

137+

// categories, while detailed channel state stays in the health snapshot.

134138

if (evaluation.reason === "stale-socket") {

135139

return "stale-socket";

136140

}

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway chat display sanitizer.

2+

// Removes OpenClaw-only envelopes before messages are shown in UI/RPC results.

13

import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";

24

import {

35

stripInternalMetadataForDisplay,

@@ -12,6 +14,8 @@ import { stripEnvelope } from "../shared/chat-envelope.js";

1214

export { stripEnvelope };

1315
1416

function extractMessageSenderLabel(entry: Record<string, unknown>): string | null {

17+

// Sender labels can be explicit fields or embedded in text/envelope content.

18+

// Preserve the first label found so user-origin rows keep human context.

1519

if (typeof entry.senderLabel === "string" && entry.senderLabel.trim()) {

1620

return entry.senderLabel.trim();

1721

}

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Server-side gateway client readiness adapter.

2+

// Defers client start until the shared event-loop readiness probe succeeds.

13

import type {

24

GatewayClientStartable,

35

GatewayClientStartReadinessOptions,

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway method authorization scope resolver.

2+

// Maps static and plugin-defined gateway methods to operator scopes.

13

import { normalizeOptionalString as normalizeSessionActionParam } from "@openclaw/normalization-core/string-coerce";

24

import { getPluginRegistryState } from "../plugins/runtime-state.js";

35

import { resolveReservedGatewayMethodScope } from "../shared/gateway-method-policy.js";

@@ -107,6 +109,8 @@ function resolveSessionActionRegisteredScopes(params: unknown): OperatorScope[]

107109

return undefined;

108110

}

109111

const requiredScopes = registration.action.requiredScopes;

112+

// Registered session actions default to write scope when they omit a custom

113+

// requirement; this preserves the historical mutation boundary.

110114

return requiredScopes && requiredScopes.length > 0 ? [...requiredScopes] : [WRITE_SCOPE];

111115

}

112116
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Plugin/channel activation config merge helpers.

2+

// Carries activation enablement into runtime config without copying stale state.

13

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

24

import { isRecord } from "../utils.js";

35
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway restart timing trace helpers.

2+

// Emits opt-in restart handoff diagnostics with bounded metric formatting.

13

import { performance } from "node:perf_hooks";

24

import { isTruthyEnvValue } from "../infra/env.js";

35

import { createSubsystemLogger } from "../logging/subsystem.js";

@@ -41,6 +43,8 @@ function normalizeMetricEntries(

4143

}

4244
4345

function formatMetricKey(key: string): string {

46+

// Metric keys are log tokens, not structured JSON. Keep them compact and

47+

// shell-friendly so trace lines remain grepable.

4448

const normalized = key.replace(/[^A-Za-z0-9]/gu, "");

4549

if (!normalized) {

4650

return "metric";

@@ -261,6 +265,8 @@ function countActiveTimersFromHandles(activeHandles: readonly unknown[]): number

261265

}

262266
263267

function normalizeRestartTraceHandoff(value: unknown): GatewayRestartTraceHandoff | null {

268+

// Handoff values come from another process. Reject stale/future values so a

269+

// reused shell environment cannot poison later restart measurements.

264270

if (typeof value !== "object" || value === null || Array.isArray(value)) {

265271

return null;

266272

}