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

推荐订阅源

T
The Blog of Author Tim Ferriss
罗磊的独立博客
月光博客
月光博客
GbyAI
GbyAI
腾讯CDC
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
雷峰网
雷峰网
B
Blog RSS Feed
美团技术团队
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
D
Docker

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(runtime): remove unused helper exports · opencla...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -62,14 +62,6 @@ export function resolveGatewayDiscoveryEndpoint(

6262

};

6363

}

6464
65-

export function pickResolvedGatewayHost(beacon: GatewayBonjourBeacon): string | null {

66-

return resolveGatewayDiscoveryEndpoint(beacon)?.host ?? null;

67-

}

68-
69-

export function pickResolvedGatewayPort(beacon: GatewayBonjourBeacon): number | null {

70-

return resolveGatewayDiscoveryEndpoint(beacon)?.port ?? null;

71-

}

72-
7365

type GatewayBonjourDiscoverOpts = {

7466

timeoutMs?: number;

7567

domains?: string[];

Original file line numberDiff line numberDiff line change

@@ -150,10 +150,3 @@ export function isContextOverflow(message: AssistantMessage, contextWindow?: num

150150
151151

return false;

152152

}

153-
154-

/**

155-

* Get the overflow patterns for testing purposes.

156-

*/

157-

export function getOverflowPatterns(): RegExp[] {

158-

return [...OVERFLOW_PATTERNS];

159-

}

Original file line numberDiff line numberDiff line change

@@ -54,18 +54,6 @@ export function parseAssistantTextSignature(

5454

}

5555

}

5656
57-

/** Encodes versioned assistant text metadata stored alongside streamed text blocks. */

58-

export function encodeAssistantTextSignature(params: {

59-

id: string;

60-

phase?: AssistantPhase;

61-

}): string {

62-

return JSON.stringify({

63-

v: 1,

64-

id: params.id,

65-

...(params.phase ? { phase: params.phase } : {}),

66-

});

67-

}

68-
6957

/** Resolves a message phase only when the top-level phase or all explicit blocks agree. */

7058

export function resolveAssistantMessagePhase(message: unknown): AssistantPhase | undefined {

7159

if (!message || typeof message !== "object") {

Original file line numberDiff line numberDiff line change

@@ -256,10 +256,6 @@ function resolveSkillsLimits(config?: OpenClawConfig, agentId?: string): Resolve

256256

};

257257

}

258258
259-

export function resolveSkillRootScanLimit(config?: OpenClawConfig): number {

260-

return config?.skills?.limits?.maxCandidatesPerRoot ?? DEFAULT_MAX_CANDIDATES_PER_ROOT;

261-

}

262-
263259

function listChildDirectories(

264260

dir: string,

265261

opts?: {

@@ -1698,13 +1694,6 @@ export async function syncSkillsToWorkspace(params: {

16981694

});

16991695

}

17001696
1701-

export function filterWorkspaceSkillEntries(

1702-

entries: SkillEntry[],

1703-

config?: OpenClawConfig,

1704-

): SkillEntry[] {

1705-

return filterSkillEntries(entries, config);

1706-

}

1707-
17081697

export function filterWorkspaceSkillEntriesWithOptions(

17091698

entries: SkillEntry[],

17101699

opts?: {

Original file line numberDiff line numberDiff line change

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

1515

isParentFlowLinkError,

1616

linkTaskToFlowById,

1717

listTasksForFlowId,

18-

markTaskLostById,

1918

markTaskRunningByRunId,

2019

finalizeTaskRunByRunId as finalizeTaskRunByRunIdInRegistry,

2120

recordTaskProgressByRunId,

@@ -207,16 +206,6 @@ export function failTaskRunByRunId(params: {

207206

});

208207

}

209208
210-

export function markTaskRunLostById(params: {

211-

taskId: string;

212-

endedAt: number;

213-

lastEventAt?: number;

214-

error?: string;

215-

cleanupAfter?: number;

216-

}) {

217-

return markTaskLostById(params);

218-

}

219-
220209

export function setDetachedTaskDeliveryStatusByRunId(params: {

221210

runId: string;

222211

runtime?: TaskRuntime;

@@ -362,15 +351,6 @@ export function retryBlockedFlowAsQueuedTaskRun(

362351

});

363352

}

364353
365-

export function retryBlockedFlowAsRunningTaskRun(

366-

params: Omit<RetryBlockedFlowParams, "status">,

367-

): RetryBlockedFlowResult {

368-

return retryBlockedFlowTask({

369-

...params,

370-

status: "running",

371-

});

372-

}

373-
374354

type CancelFlowResult = {

375355

found: boolean;

376356

cancelled: boolean;

Original file line numberDiff line numberDiff line change

@@ -1253,8 +1253,3 @@ export function configureTaskRegistryMaintenance(options: {

12531253

configuredRuntimeAuthoritative = options.runtimeAuthoritative;

12541254

}

12551255

}

1256-
1257-

export function getReconciledTaskById(taskId: string): TaskRecord | undefined {

1258-

const task = getTaskById(taskId);

1259-

return task ? reconcileTaskRecordForOperatorInspection(task) : undefined;

1260-

}

Original file line numberDiff line numberDiff line change

@@ -2283,11 +2283,6 @@ function listTasksFromIndex(index: Map<string, Set<string>>, key: string): TaskR

22832283

.map(({ insertionIndex: _, ...task }) => task);

22842284

}

22852285
2286-

export function findLatestTaskForSessionKey(sessionKey: string): TaskRecord | undefined {

2287-

const task = listTasksForSessionKey(sessionKey)[0];

2288-

return task ? cloneTaskRecord(task) : undefined;

2289-

}

2290-
22912286

export function listTasksForSessionKey(sessionKey: string): TaskRecord[] {

22922287

ensureTaskRegistryReady();

22932288

const key = normalizeOptionalString(sessionKey);