mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 04:00:43 +00:00
9 lines
240 B
TypeScript
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;
|
|
}
|
|
}
|