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

推荐订阅源

人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
U
Unit 42
GbyAI
GbyAI
B
Blog RSS Feed
博客园 - Franky
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research

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

@@ -3,7 +3,7 @@ import path from "node:path";

33
44

export const CANONICAL_ROOT_MEMORY_FILENAME = "MEMORY.md";

55

export const LEGACY_ROOT_MEMORY_FILENAME = "memory.md";

6-

export const ROOT_MEMORY_REPAIR_RELATIVE_DIR = ".openclaw-repair/root-memory";

6+

const ROOT_MEMORY_REPAIR_RELATIVE_DIR = ".openclaw-repair/root-memory";

77
88

export function resolveCanonicalRootMemoryPath(workspaceDir: string): string {

99

return path.join(workspaceDir, CANONICAL_ROOT_MEMORY_FILENAME);

@@ -17,7 +17,7 @@ export function resolveRootMemoryRepairDir(workspaceDir: string): string {

1717

return path.join(workspaceDir, ".openclaw-repair", "root-memory");

1818

}

1919
20-

export function normalizeWorkspaceRelativePath(value: string): string {

20+

function normalizeWorkspaceRelativePath(value: string): string {

2121

return value.trim().replace(/\\/g, "/").replace(/^\.\//, "");

2222

}

2323
Original file line numberDiff line numberDiff line change

@@ -8,24 +8,24 @@ import type {

88

NormalizedModelCatalogRow,

99

} from "./types.js";

1010
11-

export type ManifestModelCatalogPlugin = {

11+

type ManifestModelCatalogPlugin = {

1212

id: string;

1313

providers?: readonly string[];

1414

modelCatalog?: Pick<ModelCatalog, "providers" | "aliases" | "suppressions" | "discovery">;

1515

};

1616
17-

export type ManifestModelCatalogRegistry = {

17+

type ManifestModelCatalogRegistry = {

1818

plugins: readonly ManifestModelCatalogPlugin[];

1919

};

2020
21-

export type ManifestModelCatalogPlanEntry = {

21+

type ManifestModelCatalogPlanEntry = {

2222

pluginId: string;

2323

provider: string;

2424

discovery?: ModelCatalogDiscovery;

2525

rows: readonly NormalizedModelCatalogRow[];

2626

};

2727
28-

export type ManifestModelCatalogConflict = {

28+

type ManifestModelCatalogConflict = {

2929

mergeKey: string;

3030

ref: string;

3131

provider: string;

@@ -34,7 +34,7 @@ export type ManifestModelCatalogConflict = {

3434

secondPluginId: string;

3535

};

3636
37-

export type ManifestModelCatalogPlan = {

37+

type ManifestModelCatalogPlan = {

3838

rows: readonly NormalizedModelCatalogRow[];

3939

entries: readonly ManifestModelCatalogPlanEntry[];

4040

conflicts: readonly ManifestModelCatalogConflict[];

Original file line numberDiff line numberDiff line change

@@ -3,13 +3,13 @@ import type { OpenClawProviderIndex } from "./provider-index/index.js";

33

import { normalizeModelCatalogProviderId } from "./refs.js";

44

import type { ModelCatalogProvider, NormalizedModelCatalogRow } from "./types.js";

55
6-

export type ProviderIndexModelCatalogPlanEntry = {

6+

type ProviderIndexModelCatalogPlanEntry = {

77

provider: string;

88

pluginId: string;

99

rows: readonly NormalizedModelCatalogRow[];

1010

};

1111
12-

export type ProviderIndexModelCatalogPlan = {

12+

type ProviderIndexModelCatalogPlan = {

1313

rows: readonly NormalizedModelCatalogRow[];

1414

entries: readonly ProviderIndexModelCatalogPlanEntry[];

1515

};