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

推荐订阅源

H
Help Net Security
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
有赞技术团队
有赞技术团队
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
Vercel News
Vercel News
F
Fortinet All Blogs
Last Week in AI
Last Week in AI
M
MIT News - Artificial intelligence
小众软件
小众软件
月光博客
月光博客
A
About on SuperTechFans

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

@@ -1509,14 +1509,6 @@ export function resolveLatestVersionFromPackage(detail: ClawHubPackageDetail): s

15091509

return detail.package?.latestVersion ?? detail.package?.tags?.latest ?? null;

15101510

}

15111511
1512-

/** Detects package or skill detail payloads that represent skill-family packages. */

1513-

export function isClawHubFamilySkill(detail: ClawHubPackageDetail | ClawHubSkillDetail): boolean {

1514-

if ("package" in detail) {

1515-

return detail.package?.family === "skill";

1516-

}

1517-

return Boolean(detail.skill);

1518-

}

1519-
15201512

/** Checks whether a host plugin API version satisfies a ClawHub plugin API range. */

15211513

export function satisfiesPluginApiRange(

15221514

pluginApiVersion: string,

Original file line numberDiff line numberDiff line change

@@ -2532,28 +2532,6 @@ async function installPluginFromInstalledPackageDirInternal(

25322532

return result;

25332533

}

25342534
2535-

export async function preflightPluginPackageInstallSource(

2536-

params: {

2537-

packageDir: string;

2538-

} & PackageInstallCommonParams,

2539-

): Promise<PluginInstallFailureResult | null> {

2540-

const runtime = await loadPluginInstallRuntime();

2541-

const { logger } = runtime.resolveTimedInstallModeOptions(params, defaultLogger);

2542-

const validated = await validatePackagePluginInstallSource({

2543-

runtime,

2544-

packageDir: params.packageDir,

2545-

expectedPluginId: params.expectedPluginId,

2546-

requirePluginManifest: params.requirePluginManifest,

2547-

allowSourceTypeScriptEntries: params.allowSourceTypeScriptEntries,

2548-

dangerouslyForceUnsafeInstall: params.dangerouslyForceUnsafeInstall,

2549-

trustedSourceLinkedOfficialInstall: params.trustedSourceLinkedOfficialInstall,

2550-

config: params.config,

2551-

installPolicyRequest: params.installPolicyRequest,

2552-

logger,

2553-

mode: params.mode ?? "install",

2554-

});

2555-

return validated.ok ? null : validated;

2556-

}

25572535
25582536

async function installPluginFromPackageDir(

25592537

params: {

Original file line numberDiff line numberDiff line change

@@ -199,5 +199,3 @@ export function restoreRegisteredMemoryEmbeddingProviders(

199199

export function clearMemoryEmbeddingProviders(): void {

200200

getMemoryEmbeddingProviders().clear();

201201

}

202-
203-

export const resetMemoryEmbeddingProviders = clearMemoryEmbeddingProviders;

Original file line numberDiff line numberDiff line change

@@ -249,10 +249,6 @@ function normalizeMemoryPromptLines(value: unknown): string[] {

249249

return value.filter((line): line is string => typeof line === "string");

250250

}

251251
252-

export function getMemoryPromptSectionBuilder(): MemoryPromptSectionBuilder | undefined {

253-

return memoryPluginState.capability?.capability.promptBuilder;

254-

}

255-
256252

export function listMemoryPromptSupplements(): MemoryPromptSupplementRegistration[] {

257253

return [...memoryPluginState.promptSupplements];

258254

}

@@ -276,10 +272,6 @@ export function resolveMemoryFlushPlan(params: {

276272

return memoryPluginState.capability?.capability.flushPlanResolver?.(params) ?? null;

277273

}

278274
279-

export function getMemoryFlushPlanResolver(): MemoryFlushPlanResolver | undefined {

280-

return memoryPluginState.capability?.capability.flushPlanResolver;

281-

}

282-
283275

/** @deprecated Use registerMemoryCapability(pluginId, { runtime }) instead. */

284276

export function registerMemoryRuntime(runtime: MemoryPluginRuntime): void {

285277

registerMemoryRuntimeForPlugin(LEGACY_MEMORY_COMPAT_PLUGIN_ID, runtime);

Original file line numberDiff line numberDiff line change

@@ -97,15 +97,6 @@ export function getPluginModuleLoaderStats(): PluginModuleLoaderStatsSnapshot {

9797

};

9898

}

9999
100-

export function resetPluginModuleLoaderStatsForTest(): void {

101-

pluginModuleLoaderStats.calls = 0;

102-

pluginModuleLoaderStats.nativeHits = 0;

103-

pluginModuleLoaderStats.nativeMisses = 0;

104-

pluginModuleLoaderStats.sourceTransformForced = 0;

105-

pluginModuleLoaderStats.sourceTransformFallbacks = 0;

106-

pluginModuleLoaderStats.sourceTransformTargets.clear();

107-

}

108-
109100

function loadCreateJitiLoaderFactory(): PluginModuleLoaderFactory {

110101

if (createJitiLoaderFactory) {

111102

return createJitiLoaderFactory;

Original file line numberDiff line numberDiff line change

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

33

import path from "node:path";

44

import { isRecord as isJsonObject } from "@openclaw/normalization-core/record-coerce";

55

import { listAgentIds, resolveAgentDir } from "../agents/agent-scope.js";

6-

import { resolveAuthProfileDatabasePath } from "../agents/auth-profiles/sqlite.js";

76

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

87

import { formatErrorMessage } from "../infra/errors.js";

98

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

@@ -15,13 +14,6 @@ export function parseEnvAssignmentValue(raw: string): string {

1514

return parseEnvValue(raw);

1615

}

1716
18-

/** Lists canonical auth-profile stores visible to secrets audit/apply storage scanners. */

19-

export function listAuthProfileStorePaths(config: OpenClawConfig, stateDir: string): string[] {

20-

return listAuthProfileStoreAgentDirs(config, stateDir).map((agentDir) =>

21-

resolveAuthProfileDatabasePath(agentDir),

22-

);

23-

}

24-
2517

/** Lists agent directories that own canonical auth-profile stores. */

2618

export function listAuthProfileStoreAgentDirs(config: OpenClawConfig, stateDir: string): string[] {

2719

return listAuthProfileStoreAgentDirsFromAuthStorePaths(config, stateDir);