openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
16 lines (15 loc) • 427 B
TypeScript
import { t as SourceInfo } from "./source-info-CkJyox_l.js";
//#region src/skills/loading/skill-contract.d.ts
interface Skill {
name: string;
description: string;
filePath: string;
baseDir: string;
/** Deterministic marker for the SKILL.md content rendered as <version>. */
promptVersion?: string;
sourceInfo: SourceInfo;
disableModelInvocation: boolean;
source: string;
}
//#endregion
export { Skill as t };