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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain 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: organize skills subsystem layout · openclaw/ope...
shakkernerd · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -117,7 +117,7 @@ async function createAcpClient(opts: AcpClientOptions = {}): Promise<AcpClientHa

117117

const defaultServerArgs = entryPath ? [entryPath, ...serverArgs] : serverArgs;

118118

const serverCommand = opts.serverCommand ?? defaultServerCommand;

119119

const effectiveArgs = opts.serverCommand || !entryPath ? serverArgs : defaultServerArgs;

120-

const { getActiveSkillEnvKeys } = await import("../skills/env-overrides.runtime.js");

120+

const { getActiveSkillEnvKeys } = await import("../skills/runtime/env-overrides.runtime.js");

121121

const stripProviderAuthEnvVars = shouldStripProviderAuthEnvVarsForAcpServer({

122122

serverCommand,

123123

serverArgs: effectiveArgs,

Original file line numberDiff line numberDiff line change

@@ -592,16 +592,16 @@ vi.mock("./provider-auth-aliases.js", () => ({

592592

provider.trim().toLowerCase() === "codex-cli" ? "openai-codex" : provider.trim().toLowerCase(),

593593

}));

594594
595-

vi.mock("../skills/agent-filter.js", () => ({

595+

vi.mock("../skills/discovery/agent-filter.js", () => ({

596596

resolveEffectiveAgentSkillFilter: (_cfg: unknown, agentId: string) =>

597597

state.resolveAgentSkillsFilterMock(_cfg, agentId),

598598

}));

599599
600-

vi.mock("../skills/remote.js", () => ({

600+

vi.mock("../skills/runtime/remote.js", () => ({

601601

getRemoteSkillEligibility: () => ({ eligible: false }),

602602

}));

603603
604-

vi.mock("../skills/session-snapshot.js", () => ({

604+

vi.mock("../skills/runtime/session-snapshot.js", () => ({

605605

resolveReusableWorkspaceSkillSnapshot: (params: {

606606

workspaceDir: string;

607607

existingSnapshot?: { resolvedSkills?: unknown };

Original file line numberDiff line numberDiff line change

@@ -39,9 +39,9 @@ import {

3939

import { resolveSendPolicy } from "../sessions/send-policy.js";

4040

import { createLazyImportLoader } from "../shared/lazy-promise.js";

4141

import { normalizeOptionalString } from "../shared/string-coerce.js";

42-

import { resolveEffectiveAgentSkillFilter } from "../skills/agent-filter.js";

43-

import type { getRemoteSkillEligibility } from "../skills/remote.js";

44-

import type { resolveReusableWorkspaceSkillSnapshot } from "../skills/session-snapshot.js";

42+

import { resolveEffectiveAgentSkillFilter } from "../skills/discovery/agent-filter.js";

43+

import type { getRemoteSkillEligibility } from "../skills/runtime/remote.js";

44+

import type { resolveReusableWorkspaceSkillSnapshot } from "../skills/runtime/session-snapshot.js";

4545

import type { SkillSnapshot } from "../skills/types.js";

4646

import { sanitizeForLog } from "../terminal/ansi.js";

4747

import { createTrajectoryRuntimeRecorder } from "../trajectory/runtime.js";

@@ -156,8 +156,8 @@ const execDefaultsRuntimeLoader = createLazyImportLoader<ExecDefaultsRuntime>(

156156

);

157157

const skillsRuntimeLoader = createLazyImportLoader<SkillsRuntime>(async () => {

158158

const [remote, sessionSnapshot] = await Promise.all([

159-

import("../skills/remote.js"),

160-

import("../skills/session-snapshot.js"),

159+

import("../skills/runtime/remote.js"),

160+

import("../skills/runtime/session-snapshot.js"),

161161

]);

162162

return {

163163

getRemoteSkillEligibility: remote.getRemoteSkillEligibility,

Original file line numberDiff line numberDiff line change

@@ -21,7 +21,7 @@ import {

2121

normalizeOptionalString,

2222

resolvePrimaryStringValue,

2323

} from "../shared/string-coerce.js";

24-

import { resolveEffectiveAgentSkillFilter } from "../skills/agent-filter.js";

24+

import { resolveEffectiveAgentSkillFilter } from "../skills/discovery/agent-filter.js";

2525

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

2626

import {

2727

listAgentIds,

Original file line numberDiff line numberDiff line change

@@ -13,7 +13,7 @@ import { getGlobalHookRunner } from "../plugins/hook-runner-global.js";

1313

import { createEmptyPluginRegistry } from "../plugins/registry-empty.js";

1414

import { setActivePluginRegistry } from "../plugins/runtime.js";

1515

import { setPluginToolMeta } from "../plugins/tools.js";

16-

import { createCanonicalFixtureSkill } from "../skills/test-helpers.js";

16+

import { createCanonicalFixtureSkill } from "../skills/test-support/test-helpers.js";

1717

import {

1818

runBeforeToolCallHook,

1919

wrapToolWithBeforeToolCallHook,

Original file line numberDiff line numberDiff line change

@@ -31,7 +31,10 @@ import {

3131

type PluginHookToolKind,

3232

} from "../plugins/types.js";

3333

import { createLazyRuntimeSurface } from "../shared/lazy-runtime.js";

34-

import { resolveSkillTelemetrySource, resolveSkillTelemetrySourceValue } from "../skills/source.js";

34+

import {

35+

resolveSkillTelemetrySource,

36+

resolveSkillTelemetrySourceValue,

37+

} from "../skills/loading/source.js";

3538

import type { SkillSnapshot, SkillTelemetrySource } from "../skills/types.js";

3639

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

3740

import { adjustedParamsByToolCallId } from "./agent-tools.before-tool-call.state.js";

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ import { describe, expect, it, vi } from "vitest";

55

import "./test-helpers/fast-coding-tools.js";

66

import "./test-helpers/fast-openclaw-tools.js";

77

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

8-

import { createCanonicalFixtureSkill } from "../skills/test-helpers.js";

8+

import { createCanonicalFixtureSkill } from "../skills/test-support/test-helpers.js";

99

import { createOpenClawCodingTools } from "./agent-tools.js";

1010

import { expectReadWriteEditTools, getTextContent } from "./test-helpers/agent-tools-fs-helpers.js";

1111

import { createAgentToolsSandboxContext } from "./test-helpers/agent-tools-sandbox-context.js";

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@ import { requestHeartbeat as requestHeartbeatImpl } from "../../infra/heartbeat-

1111

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

1212

import { enqueueSystemEvent as enqueueSystemEventImpl } from "../../infra/system-events.js";

1313

import { getProcessSupervisor as getProcessSupervisorImpl } from "../../process/supervisor/index.js";

14-

import { applySkillEnvOverridesFromSnapshot } from "../../skills/env-overrides.js";

14+

import { applySkillEnvOverridesFromSnapshot } from "../../skills/runtime/env-overrides.js";

1515

import { appendBootstrapPromptWarning } from "../bootstrap-budget.js";

1616

import {

1717

createCliJsonlStreamingParser,

Original file line numberDiff line numberDiff line change

@@ -21,7 +21,7 @@ import { buildAgentHookContextChannelFields } from "../../plugins/hook-agent-con

2121

import { getGlobalHookRunner } from "../../plugins/hook-runner-global.js";

2222

import { annotateInterSessionPromptText } from "../../sessions/input-provenance.js";

2323

import { uniqueStrings } from "../../shared/string-normalization.js";

24-

import { resolveSkillsPromptForRun } from "../../skills/workspace.js";

24+

import { resolveSkillsPromptForRun } from "../../skills/loading/workspace.js";

2525

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

2626

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

2727

import { externalCliDiscoveryForProviderAuth } from "../auth-profiles/external-cli-discovery.js";

Original file line numberDiff line numberDiff line change

@@ -19,7 +19,7 @@ import {

1919

appendUserTurnTranscriptMessage,

2020

type PersistedUserTurnMessage,

2121

} from "../../sessions/user-turn-transcript.js";

22-

import { buildWorkspaceSkillSnapshot } from "../../skills/service.js";

22+

import { buildWorkspaceSkillSnapshot } from "../../skills/discovery/service.js";

2323

import { sanitizeForLog } from "../../terminal/ansi.js";

2424

import { resolveMessageChannel } from "../../utils/message-channel.js";

2525

import { resolveAuthProfileOrder } from "../auth-profiles/order.js";