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

推荐订阅源

MyScale Blog
MyScale Blog
J
Java Code Geeks
Vercel News
Vercel News
A
About on SuperTechFans
G
Google Developers Blog
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
博客园 - 司徒正美
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园_首页
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
量子位
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
H
Help Net Security
宝玉的分享
宝玉的分享
博客园 - 叶小钗

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: share agent harness loader helpers · openclaw/o...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main
11

import ignore from "ignore";

2-

import { parse } from "yaml";

3-

import { type ExecutionEnv, type FileInfo, type Result, type Skill, toError } from "./types.js";

2+

import {

3+

basenameEnvPath,

4+

dirnameEnvPath,

5+

joinEnvPath,

6+

parseFrontmatter,

7+

relativeEnvPath,

8+

resolveFileInfoKind as resolveKind,

9+

} from "./file-loader-utils.js";

10+

import { type ExecutionEnv, type Result, type Skill } from "./types.js";

411512

const MAX_NAME_LENGTH = 64;

613

const MAX_DESCRIPTION_LENGTH = 1024;

@@ -374,90 +381,3 @@ function validateDescription(description: string | undefined): string[] {

374381

}

375382

return errors;

376383

}

377-378-

function parseFrontmatter(

379-

content: string,

380-

): Result<{ frontmatter: Record<string, unknown>; body: string }, Error> {

381-

try {

382-

const normalized = content.replace(/\r\n/g, "\n").replace(/\r/g, "\n");

383-

if (!normalized.startsWith("---")) {

384-

return { ok: true, value: { frontmatter: {}, body: normalized } };

385-

}

386-

const endIndex = normalized.indexOf("\n---", 3);

387-

if (endIndex === -1) {

388-

return { ok: true, value: { frontmatter: {}, body: normalized } };

389-

}

390-

const yamlString = normalized.slice(4, endIndex);

391-

const body = normalized.slice(endIndex + 4).trim();

392-

return {

393-

ok: true,

394-

value: { frontmatter: (parse(yamlString) ?? {}) as Record<string, unknown>, body },

395-

};

396-

} catch (error) {

397-

return { ok: false, error: toError(error) };

398-

}

399-

}

400-401-

async function resolveKind(

402-

env: ExecutionEnv,

403-

info: FileInfo,

404-

diagnostics: SkillDiagnostic[],

405-

): Promise<"file" | "directory" | undefined> {

406-

if (info.kind === "file" || info.kind === "directory") {

407-

return info.kind;

408-

}

409-

const canonicalPath = await env.canonicalPath(info.path);

410-

if (!canonicalPath.ok) {

411-

if (canonicalPath.error.code !== "not_found") {

412-

diagnostics.push({

413-

type: "warning",

414-

code: "file_info_failed",

415-

message: canonicalPath.error.message,

416-

path: info.path,

417-

});

418-

}

419-

return undefined;

420-

}

421-

const target = await env.fileInfo(canonicalPath.value);

422-

if (!target.ok) {

423-

if (target.error.code !== "not_found") {

424-

diagnostics.push({

425-

type: "warning",

426-

code: "file_info_failed",

427-

message: target.error.message,

428-

path: info.path,

429-

});

430-

}

431-

return undefined;

432-

}

433-

return target.value.kind === "file" || target.value.kind === "directory"

434-

? target.value.kind

435-

: undefined;

436-

}

437-438-

function joinEnvPath(base: string, child: string): string {

439-

return `${base.replace(/\/+$/, "")}/${child.replace(/^\/+/, "")}`;

440-

}

441-442-

function dirnameEnvPath(path: string): string {

443-

const normalized = path.replace(/\/+$/, "");

444-

const slashIndex = normalized.lastIndexOf("/");

445-

return slashIndex <= 0 ? "/" : normalized.slice(0, slashIndex);

446-

}

447-448-

function basenameEnvPath(path: string): string {

449-

const normalized = path.replace(/\/+$/, "");

450-

const slashIndex = normalized.lastIndexOf("/");

451-

return slashIndex === -1 ? normalized : normalized.slice(slashIndex + 1);

452-

}

453-454-

function relativeEnvPath(root: string, path: string): string {

455-

const normalizedRoot = root.replace(/\/+$/, "");

456-

const normalizedPath = path.replace(/\/+$/, "");

457-

if (normalizedPath === normalizedRoot) {

458-

return "";

459-

}

460-

return normalizedPath.startsWith(`${normalizedRoot}/`)

461-

? normalizedPath.slice(normalizedRoot.length + 1)

462-

: normalizedPath.replace(/^\/+/, "");

463-

}