mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-13 23:56:07 +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;
|
|
}
|
|
}
|