Files
openclaw/src/agents/skills-install.types.ts
2026-04-09 07:45:18 +01:00

9 lines
154 B
TypeScript

export type SkillInstallResult = {
ok: boolean;
message: string;
stdout: string;
stderr: string;
code: number | null;
warnings?: string[];
};