UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

30 lines 947 B
import "./types-DnOM6PIM.js"; //#region src/agents/sessions/source-info.d.ts type SourceScope = "user" | "project" | "temporary"; type SourceOrigin = "package" | "top-level"; interface SourceInfo { path: string; source: string; scope: SourceScope; origin: SourceOrigin; baseDir?: string; } //#endregion //#region src/skills/loading/skill-contract.d.ts interface Skill { name: string; /** Human-readable title from the first Markdown H1, falling back to the identifier. */ displayName?: string; description: string; /** Additional loading guidance rendered with the location in full and compact catalogs. */ locationNote?: string; /** Prepared instructions for transferred bundles or non-filesystem locators such as node://. */ readContent?: string; filePath: string; baseDir: string; sourceInfo: SourceInfo; disableModelInvocation: boolean; source: string; } //#endregion export { SourceInfo as n, Skill as t };