Files
openclaw/src/types/pi-coding-agent.d.ts
2026-04-18 23:16:47 +01:00

9 lines
240 B
TypeScript

export type OpenClawPiCodingAgentSkillSourceAugmentation = never;
declare module "@mariozechner/pi-coding-agent" {
interface Skill {
// OpenClaw relies on the source identifier returned by pi skill loaders.
source: string;
}
}