@kl-c/matrixos 0.3.46 → 0.3.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ export interface SkillCreateOptions {
2
+ readonly name: string;
3
+ readonly description?: string;
4
+ readonly category?: string;
5
+ readonly scope?: "user" | "project";
6
+ readonly apply?: boolean;
7
+ readonly targetDir?: string;
8
+ readonly json?: boolean;
9
+ }
10
+ export interface SkillCreateResult {
11
+ readonly ok: boolean;
12
+ readonly name: string;
13
+ readonly slug: string;
14
+ readonly path: string;
15
+ readonly content: string;
16
+ readonly applied: boolean;
17
+ readonly error?: string;
18
+ }
19
+ export declare function executeSkillCreateCommand(options: SkillCreateOptions): SkillCreateResult;