@vibe-agent-toolkit/cli 0.1.14 → 0.1.15-rc.2

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.
Files changed (37) hide show
  1. package/dist/bin.js +2 -0
  2. package/dist/bin.js.map +1 -1
  3. package/dist/commands/agent/build.js +3 -3
  4. package/dist/commands/agent/build.js.map +1 -1
  5. package/dist/commands/agent/import.js +2 -2
  6. package/dist/commands/agent/import.js.map +1 -1
  7. package/dist/commands/agent/index.js +13 -13
  8. package/dist/commands/agent/index.js.map +1 -1
  9. package/dist/commands/agent/install.d.ts +1 -1
  10. package/dist/commands/agent/install.js +3 -3
  11. package/dist/commands/agent/install.js.map +1 -1
  12. package/dist/commands/agent/installed.js +1 -1
  13. package/dist/commands/agent/installed.js.map +1 -1
  14. package/dist/commands/agent/uninstall.d.ts +1 -1
  15. package/dist/commands/agent/uninstall.js +2 -2
  16. package/dist/commands/agent/uninstall.js.map +1 -1
  17. package/dist/commands/audit.d.ts +9 -1
  18. package/dist/commands/audit.d.ts.map +1 -1
  19. package/dist/commands/audit.js +153 -70
  20. package/dist/commands/audit.js.map +1 -1
  21. package/dist/commands/install.d.ts +32 -0
  22. package/dist/commands/install.d.ts.map +1 -0
  23. package/dist/commands/install.js +264 -0
  24. package/dist/commands/install.js.map +1 -0
  25. package/dist/commands/skills/build.d.ts.map +1 -1
  26. package/dist/commands/skills/build.js +33 -31
  27. package/dist/commands/skills/build.js.map +1 -1
  28. package/dist/commands/skills/package.d.ts +1 -0
  29. package/dist/commands/skills/package.d.ts.map +1 -1
  30. package/dist/commands/skills/package.js +12 -0
  31. package/dist/commands/skills/package.js.map +1 -1
  32. package/dist/schemas/config.d.ts +93 -93
  33. package/dist/utils/scope-locations.js +2 -2
  34. package/dist/utils/scope-locations.js.map +1 -1
  35. package/docs/audit.md +3 -3
  36. package/docs/index.md +1 -1
  37. package/package.json +13 -12
@@ -113,11 +113,6 @@ export declare const ResourceCollectionSchema: z.ZodObject<{
113
113
  }>>;
114
114
  }, "strip", z.ZodTypeAny, {
115
115
  include: string[];
116
- validation?: {
117
- frontmatterSchema?: string | undefined;
118
- mode?: "strict" | "permissive" | undefined;
119
- } | undefined;
120
- exclude?: string[] | undefined;
121
116
  metadata?: {
122
117
  frontmatter?: boolean | undefined;
123
118
  inference?: {
@@ -129,13 +124,13 @@ export declare const ResourceCollectionSchema: z.ZodObject<{
129
124
  tags?: string[] | undefined;
130
125
  } | undefined;
131
126
  } | undefined;
132
- }, {
133
- include: string[];
134
127
  validation?: {
135
128
  frontmatterSchema?: string | undefined;
136
129
  mode?: "strict" | "permissive" | undefined;
137
130
  } | undefined;
138
131
  exclude?: string[] | undefined;
132
+ }, {
133
+ include: string[];
139
134
  metadata?: {
140
135
  frontmatter?: boolean | undefined;
141
136
  inference?: {
@@ -147,6 +142,11 @@ export declare const ResourceCollectionSchema: z.ZodObject<{
147
142
  tags?: string[] | undefined;
148
143
  } | undefined;
149
144
  } | undefined;
145
+ validation?: {
146
+ frontmatterSchema?: string | undefined;
147
+ mode?: "strict" | "permissive" | undefined;
148
+ } | undefined;
149
+ exclude?: string[] | undefined;
150
150
  }>;
151
151
  export declare const ResourcesConfigSchema: z.ZodObject<{
152
152
  include: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -252,11 +252,6 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
252
252
  }>>;
253
253
  }, "strip", z.ZodTypeAny, {
254
254
  include: string[];
255
- validation?: {
256
- frontmatterSchema?: string | undefined;
257
- mode?: "strict" | "permissive" | undefined;
258
- } | undefined;
259
- exclude?: string[] | undefined;
260
255
  metadata?: {
261
256
  frontmatter?: boolean | undefined;
262
257
  inference?: {
@@ -268,13 +263,13 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
268
263
  tags?: string[] | undefined;
269
264
  } | undefined;
270
265
  } | undefined;
271
- }, {
272
- include: string[];
273
266
  validation?: {
274
267
  frontmatterSchema?: string | undefined;
275
268
  mode?: "strict" | "permissive" | undefined;
276
269
  } | undefined;
277
270
  exclude?: string[] | undefined;
271
+ }, {
272
+ include: string[];
278
273
  metadata?: {
279
274
  frontmatter?: boolean | undefined;
280
275
  inference?: {
@@ -286,6 +281,11 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
286
281
  tags?: string[] | undefined;
287
282
  } | undefined;
288
283
  } | undefined;
284
+ validation?: {
285
+ frontmatterSchema?: string | undefined;
286
+ mode?: "strict" | "permissive" | undefined;
287
+ } | undefined;
288
+ exclude?: string[] | undefined;
289
289
  }>>>;
290
290
  validation: z.ZodOptional<z.ZodObject<{
291
291
  checkLinks: z.ZodOptional<z.ZodBoolean>;
@@ -301,13 +301,6 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
301
301
  allowExternal?: boolean | undefined;
302
302
  }>>;
303
303
  }, "strict", z.ZodTypeAny, {
304
- validation?: {
305
- checkLinks?: boolean | undefined;
306
- checkAnchors?: boolean | undefined;
307
- allowExternal?: boolean | undefined;
308
- } | undefined;
309
- include?: string[] | undefined;
310
- exclude?: string[] | undefined;
311
304
  metadata?: {
312
305
  frontmatter?: boolean | undefined;
313
306
  inference?: {
@@ -319,13 +312,15 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
319
312
  tags?: string[] | undefined;
320
313
  } | undefined;
321
314
  } | undefined;
315
+ validation?: {
316
+ checkLinks?: boolean | undefined;
317
+ checkAnchors?: boolean | undefined;
318
+ allowExternal?: boolean | undefined;
319
+ } | undefined;
320
+ include?: string[] | undefined;
321
+ exclude?: string[] | undefined;
322
322
  collections?: Record<string, {
323
323
  include: string[];
324
- validation?: {
325
- frontmatterSchema?: string | undefined;
326
- mode?: "strict" | "permissive" | undefined;
327
- } | undefined;
328
- exclude?: string[] | undefined;
329
324
  metadata?: {
330
325
  frontmatter?: boolean | undefined;
331
326
  inference?: {
@@ -337,15 +332,13 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
337
332
  tags?: string[] | undefined;
338
333
  } | undefined;
339
334
  } | undefined;
335
+ validation?: {
336
+ frontmatterSchema?: string | undefined;
337
+ mode?: "strict" | "permissive" | undefined;
338
+ } | undefined;
339
+ exclude?: string[] | undefined;
340
340
  }> | undefined;
341
341
  }, {
342
- validation?: {
343
- checkLinks?: boolean | undefined;
344
- checkAnchors?: boolean | undefined;
345
- allowExternal?: boolean | undefined;
346
- } | undefined;
347
- include?: string[] | undefined;
348
- exclude?: string[] | undefined;
349
342
  metadata?: {
350
343
  frontmatter?: boolean | undefined;
351
344
  inference?: {
@@ -357,13 +350,15 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
357
350
  tags?: string[] | undefined;
358
351
  } | undefined;
359
352
  } | undefined;
353
+ validation?: {
354
+ checkLinks?: boolean | undefined;
355
+ checkAnchors?: boolean | undefined;
356
+ allowExternal?: boolean | undefined;
357
+ } | undefined;
358
+ include?: string[] | undefined;
359
+ exclude?: string[] | undefined;
360
360
  collections?: Record<string, {
361
361
  include: string[];
362
- validation?: {
363
- frontmatterSchema?: string | undefined;
364
- mode?: "strict" | "permissive" | undefined;
365
- } | undefined;
366
- exclude?: string[] | undefined;
367
362
  metadata?: {
368
363
  frontmatter?: boolean | undefined;
369
364
  inference?: {
@@ -375,6 +370,11 @@ export declare const ResourcesConfigSchema: z.ZodObject<{
375
370
  tags?: string[] | undefined;
376
371
  } | undefined;
377
372
  } | undefined;
373
+ validation?: {
374
+ frontmatterSchema?: string | undefined;
375
+ mode?: "strict" | "permissive" | undefined;
376
+ } | undefined;
377
+ exclude?: string[] | undefined;
378
378
  }> | undefined;
379
379
  }>;
380
380
  export declare const AgentsConfigSchema: z.ZodObject<{
@@ -696,11 +696,6 @@ export declare const ProjectConfigSchema: z.ZodObject<{
696
696
  }>>;
697
697
  }, "strip", z.ZodTypeAny, {
698
698
  include: string[];
699
- validation?: {
700
- frontmatterSchema?: string | undefined;
701
- mode?: "strict" | "permissive" | undefined;
702
- } | undefined;
703
- exclude?: string[] | undefined;
704
699
  metadata?: {
705
700
  frontmatter?: boolean | undefined;
706
701
  inference?: {
@@ -712,13 +707,13 @@ export declare const ProjectConfigSchema: z.ZodObject<{
712
707
  tags?: string[] | undefined;
713
708
  } | undefined;
714
709
  } | undefined;
715
- }, {
716
- include: string[];
717
710
  validation?: {
718
711
  frontmatterSchema?: string | undefined;
719
712
  mode?: "strict" | "permissive" | undefined;
720
713
  } | undefined;
721
714
  exclude?: string[] | undefined;
715
+ }, {
716
+ include: string[];
722
717
  metadata?: {
723
718
  frontmatter?: boolean | undefined;
724
719
  inference?: {
@@ -730,6 +725,11 @@ export declare const ProjectConfigSchema: z.ZodObject<{
730
725
  tags?: string[] | undefined;
731
726
  } | undefined;
732
727
  } | undefined;
728
+ validation?: {
729
+ frontmatterSchema?: string | undefined;
730
+ mode?: "strict" | "permissive" | undefined;
731
+ } | undefined;
732
+ exclude?: string[] | undefined;
733
733
  }>>>;
734
734
  validation: z.ZodOptional<z.ZodObject<{
735
735
  checkLinks: z.ZodOptional<z.ZodBoolean>;
@@ -745,13 +745,6 @@ export declare const ProjectConfigSchema: z.ZodObject<{
745
745
  allowExternal?: boolean | undefined;
746
746
  }>>;
747
747
  }, "strict", z.ZodTypeAny, {
748
- validation?: {
749
- checkLinks?: boolean | undefined;
750
- checkAnchors?: boolean | undefined;
751
- allowExternal?: boolean | undefined;
752
- } | undefined;
753
- include?: string[] | undefined;
754
- exclude?: string[] | undefined;
755
748
  metadata?: {
756
749
  frontmatter?: boolean | undefined;
757
750
  inference?: {
@@ -763,13 +756,15 @@ export declare const ProjectConfigSchema: z.ZodObject<{
763
756
  tags?: string[] | undefined;
764
757
  } | undefined;
765
758
  } | undefined;
759
+ validation?: {
760
+ checkLinks?: boolean | undefined;
761
+ checkAnchors?: boolean | undefined;
762
+ allowExternal?: boolean | undefined;
763
+ } | undefined;
764
+ include?: string[] | undefined;
765
+ exclude?: string[] | undefined;
766
766
  collections?: Record<string, {
767
767
  include: string[];
768
- validation?: {
769
- frontmatterSchema?: string | undefined;
770
- mode?: "strict" | "permissive" | undefined;
771
- } | undefined;
772
- exclude?: string[] | undefined;
773
768
  metadata?: {
774
769
  frontmatter?: boolean | undefined;
775
770
  inference?: {
@@ -781,15 +776,13 @@ export declare const ProjectConfigSchema: z.ZodObject<{
781
776
  tags?: string[] | undefined;
782
777
  } | undefined;
783
778
  } | undefined;
779
+ validation?: {
780
+ frontmatterSchema?: string | undefined;
781
+ mode?: "strict" | "permissive" | undefined;
782
+ } | undefined;
783
+ exclude?: string[] | undefined;
784
784
  }> | undefined;
785
785
  }, {
786
- validation?: {
787
- checkLinks?: boolean | undefined;
788
- checkAnchors?: boolean | undefined;
789
- allowExternal?: boolean | undefined;
790
- } | undefined;
791
- include?: string[] | undefined;
792
- exclude?: string[] | undefined;
793
786
  metadata?: {
794
787
  frontmatter?: boolean | undefined;
795
788
  inference?: {
@@ -801,13 +794,15 @@ export declare const ProjectConfigSchema: z.ZodObject<{
801
794
  tags?: string[] | undefined;
802
795
  } | undefined;
803
796
  } | undefined;
797
+ validation?: {
798
+ checkLinks?: boolean | undefined;
799
+ checkAnchors?: boolean | undefined;
800
+ allowExternal?: boolean | undefined;
801
+ } | undefined;
802
+ include?: string[] | undefined;
803
+ exclude?: string[] | undefined;
804
804
  collections?: Record<string, {
805
805
  include: string[];
806
- validation?: {
807
- frontmatterSchema?: string | undefined;
808
- mode?: "strict" | "permissive" | undefined;
809
- } | undefined;
810
- exclude?: string[] | undefined;
811
806
  metadata?: {
812
807
  frontmatter?: boolean | undefined;
813
808
  inference?: {
@@ -819,6 +814,11 @@ export declare const ProjectConfigSchema: z.ZodObject<{
819
814
  tags?: string[] | undefined;
820
815
  } | undefined;
821
816
  } | undefined;
817
+ validation?: {
818
+ frontmatterSchema?: string | undefined;
819
+ mode?: "strict" | "permissive" | undefined;
820
+ } | undefined;
821
+ exclude?: string[] | undefined;
822
822
  }> | undefined;
823
823
  }>>;
824
824
  agents: z.ZodOptional<z.ZodObject<{
@@ -976,13 +976,6 @@ export declare const ProjectConfigSchema: z.ZodObject<{
976
976
  external?: string[] | undefined;
977
977
  } | undefined;
978
978
  resources?: {
979
- validation?: {
980
- checkLinks?: boolean | undefined;
981
- checkAnchors?: boolean | undefined;
982
- allowExternal?: boolean | undefined;
983
- } | undefined;
984
- include?: string[] | undefined;
985
- exclude?: string[] | undefined;
986
979
  metadata?: {
987
980
  frontmatter?: boolean | undefined;
988
981
  inference?: {
@@ -994,13 +987,15 @@ export declare const ProjectConfigSchema: z.ZodObject<{
994
987
  tags?: string[] | undefined;
995
988
  } | undefined;
996
989
  } | undefined;
990
+ validation?: {
991
+ checkLinks?: boolean | undefined;
992
+ checkAnchors?: boolean | undefined;
993
+ allowExternal?: boolean | undefined;
994
+ } | undefined;
995
+ include?: string[] | undefined;
996
+ exclude?: string[] | undefined;
997
997
  collections?: Record<string, {
998
998
  include: string[];
999
- validation?: {
1000
- frontmatterSchema?: string | undefined;
1001
- mode?: "strict" | "permissive" | undefined;
1002
- } | undefined;
1003
- exclude?: string[] | undefined;
1004
999
  metadata?: {
1005
1000
  frontmatter?: boolean | undefined;
1006
1001
  inference?: {
@@ -1012,6 +1007,11 @@ export declare const ProjectConfigSchema: z.ZodObject<{
1012
1007
  tags?: string[] | undefined;
1013
1008
  } | undefined;
1014
1009
  } | undefined;
1010
+ validation?: {
1011
+ frontmatterSchema?: string | undefined;
1012
+ mode?: "strict" | "permissive" | undefined;
1013
+ } | undefined;
1014
+ exclude?: string[] | undefined;
1015
1015
  }> | undefined;
1016
1016
  } | undefined;
1017
1017
  rag?: {
@@ -1046,13 +1046,6 @@ export declare const ProjectConfigSchema: z.ZodObject<{
1046
1046
  external?: string[] | undefined;
1047
1047
  } | undefined;
1048
1048
  resources?: {
1049
- validation?: {
1050
- checkLinks?: boolean | undefined;
1051
- checkAnchors?: boolean | undefined;
1052
- allowExternal?: boolean | undefined;
1053
- } | undefined;
1054
- include?: string[] | undefined;
1055
- exclude?: string[] | undefined;
1056
1049
  metadata?: {
1057
1050
  frontmatter?: boolean | undefined;
1058
1051
  inference?: {
@@ -1064,13 +1057,15 @@ export declare const ProjectConfigSchema: z.ZodObject<{
1064
1057
  tags?: string[] | undefined;
1065
1058
  } | undefined;
1066
1059
  } | undefined;
1060
+ validation?: {
1061
+ checkLinks?: boolean | undefined;
1062
+ checkAnchors?: boolean | undefined;
1063
+ allowExternal?: boolean | undefined;
1064
+ } | undefined;
1065
+ include?: string[] | undefined;
1066
+ exclude?: string[] | undefined;
1067
1067
  collections?: Record<string, {
1068
1068
  include: string[];
1069
- validation?: {
1070
- frontmatterSchema?: string | undefined;
1071
- mode?: "strict" | "permissive" | undefined;
1072
- } | undefined;
1073
- exclude?: string[] | undefined;
1074
1069
  metadata?: {
1075
1070
  frontmatter?: boolean | undefined;
1076
1071
  inference?: {
@@ -1082,6 +1077,11 @@ export declare const ProjectConfigSchema: z.ZodObject<{
1082
1077
  tags?: string[] | undefined;
1083
1078
  } | undefined;
1084
1079
  } | undefined;
1080
+ validation?: {
1081
+ frontmatterSchema?: string | undefined;
1082
+ mode?: "strict" | "permissive" | undefined;
1083
+ } | undefined;
1084
+ exclude?: string[] | undefined;
1085
1085
  }> | undefined;
1086
1086
  } | undefined;
1087
1087
  rag?: {
@@ -7,7 +7,7 @@ import path from 'node:path';
7
7
  * Map of runtime to scope locations
8
8
  */
9
9
  export const SCOPE_LOCATIONS = {
10
- 'claude-skill': {
10
+ 'agent-skill': {
11
11
  user: path.join(os.homedir(), '.claude', 'skills'),
12
12
  project: path.join(process.cwd(), '.claude', 'skills'),
13
13
  },
@@ -16,7 +16,7 @@ export const SCOPE_LOCATIONS = {
16
16
  * Map of runtime to valid scopes
17
17
  */
18
18
  export const VALID_SCOPES = {
19
- 'claude-skill': ['user', 'project'],
19
+ 'agent-skill': ['user', 'project'],
20
20
  };
21
21
  /**
22
22
  * Validate scope for a given runtime and return the target location
@@ -1 +1 @@
1
- {"version":3,"file":"scope-locations.js","sourceRoot":"","sources":["../../src/utils/scope-locations.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,MAAM,SAAS,CAAC;AACzB,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAA2C;IACrE,cAAc,EAAE;QACd,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE,QAAQ,CAAC;QAClD,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,QAAQ,CAAC;KACvD;CACF,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAA6B;IACpD,cAAc,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC;CACpC,CAAC;AAEF;;;GAGG;AACH,MAAM,UAAU,2BAA2B,CACzC,OAAe,EACf,KAAa;IAEb,6BAA6B;IAC7B,MAAM,WAAW,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;IAC1C,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;QAClC,MAAM,SAAS,GAAG,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC;QACpD,MAAM,IAAI,KAAK,CACb,kBAAkB,KAAK,kBAAkB,OAAO,MAAM;YACpD,iBAAiB,SAAS,EAAE,CAC/B,CAAC;IACJ,CAAC;IAED,qBAAqB;IACrB,MAAM,cAAc,GAAG,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;IACzD,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,MAAM,IAAI,KAAK,CAAC,UAAU,KAAK,kCAAkC,OAAO,GAAG,CAAC,CAAC;IAC/E,CAAC;IAED,OAAO,cAAc,CAAC;AACxB,CAAC"}
1
+ {"version":3,"file":"scope-locations.js","sourceRoot":"","sources":["../../src/utils/scope-locations.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,MAAM,SAAS,CAAC;AACzB,OAAO,IAAI,MAAM,WAAW,CAAC;AAE7B;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAA2C;IACrE,aAAa,EAAE;QACb,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE,QAAQ,CAAC;QAClD,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,QAAQ,CAAC;KACvD;CACF,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAA6B;IACpD,aAAa,EAAE,CAAC,MAAM,EAAE,SAAS,CAAC;CACnC,CAAC;AAEF;;;GAGG;AACH,MAAM,UAAU,2BAA2B,CACzC,OAAe,EACf,KAAa;IAEb,6BAA6B;IAC7B,MAAM,WAAW,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;IAC1C,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;QAClC,MAAM,SAAS,GAAG,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC;QACpD,MAAM,IAAI,KAAK,CACb,kBAAkB,KAAK,kBAAkB,OAAO,MAAM;YACpD,iBAAiB,SAAS,EAAE,CAC/B,CAAC;IACJ,CAAC;IAED,qBAAqB;IACrB,MAAM,cAAc,GAAG,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;IACzD,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,MAAM,IAAI,KAAK,CAAC,UAAU,KAAK,kCAAkC,OAAO,GAAG,CAAC,CAAC;IAC/E,CAAC;IAED,OAAO,cAAc,CAAC;AACxB,CAAC"}
package/docs/audit.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Overview
4
4
 
5
- The `vat audit` command provides comprehensive validation for Claude plugins, marketplaces, registries, and Claude Skills. It automatically detects resource types and applies appropriate validation rules, outputting structured YAML reports for programmatic parsing.
5
+ The `vat audit` command provides comprehensive validation for Claude plugins, marketplaces, registries, and Agent Skills. It automatically detects resource types and applies appropriate validation rules, outputting structured YAML reports for programmatic parsing.
6
6
 
7
7
  ## Key Features
8
8
 
@@ -78,9 +78,9 @@ Registry files track installed plugins and known marketplaces:
78
78
  - Schema validation against registry schema
79
79
  - Checksums match installed versions (cache staleness)
80
80
 
81
- ### 4. Claude Skills (SKILL.md files)
81
+ ### 4. Agent Skills (SKILL.md files)
82
82
 
83
- Individual Claude Skill markdown files with frontmatter:
83
+ Individual Agent Skill markdown files with frontmatter:
84
84
 
85
85
  ```markdown
86
86
  ---
package/docs/index.md CHANGED
@@ -146,7 +146,7 @@ Build agent for deployment to target runtime
146
146
 
147
147
  ```bash
148
148
  vat agent build ./my-agent # Build for default target
149
- vat agent build ./my-agent --target claude-skills
149
+ vat agent build ./my-agent --target agent-skills
150
150
  vat agent build ./my-agent --output ./dist
151
151
  ```
152
152
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-agent-toolkit/cli",
3
- "version": "0.1.14",
3
+ "version": "0.1.15-rc.2",
4
4
  "description": "Command-line interface for vibe-agent-toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -41,21 +41,23 @@
41
41
  "//dependencies-note": "DO NOT add example agent packages (vat-example-cat-agents, etc.) - users install those separately, not as CLI dependencies. Only vat-development-agents (contains vibe-agent-toolkit skill) should be included.",
42
42
  "dependencies": {
43
43
  "@anthropic-ai/sdk": "^0.71.2",
44
- "@vibe-agent-toolkit/agent-config": "0.1.14",
45
- "@vibe-agent-toolkit/agent-schema": "0.1.14",
46
- "@vibe-agent-toolkit/agent-skills": "0.1.14",
47
- "@vibe-agent-toolkit/discovery": "0.1.14",
48
- "@vibe-agent-toolkit/gateway-mcp": "0.1.14",
49
- "@vibe-agent-toolkit/rag": "0.1.14",
50
- "@vibe-agent-toolkit/rag-lancedb": "0.1.14",
51
- "@vibe-agent-toolkit/resources": "0.1.14",
52
- "@vibe-agent-toolkit/utils": "0.1.14",
53
- "@vibe-agent-toolkit/vat-development-agents": "0.1.14",
44
+ "@vibe-agent-toolkit/agent-config": "0.1.15-rc.2",
45
+ "@vibe-agent-toolkit/agent-schema": "0.1.15-rc.2",
46
+ "@vibe-agent-toolkit/agent-skills": "0.1.15-rc.2",
47
+ "@vibe-agent-toolkit/claude-marketplace": "0.1.15-rc.2",
48
+ "@vibe-agent-toolkit/discovery": "0.1.15-rc.2",
49
+ "@vibe-agent-toolkit/gateway-mcp": "0.1.15-rc.2",
50
+ "@vibe-agent-toolkit/rag": "0.1.15-rc.2",
51
+ "@vibe-agent-toolkit/rag-lancedb": "0.1.15-rc.2",
52
+ "@vibe-agent-toolkit/resources": "0.1.15-rc.2",
53
+ "@vibe-agent-toolkit/utils": "0.1.15-rc.2",
54
+ "@vibe-agent-toolkit/vat-development-agents": "0.1.15-rc.2",
54
55
  "adm-zip": "^0.5.16",
55
56
  "commander": "^12.1.0",
56
57
  "js-yaml": "^4.1.0",
57
58
  "picomatch": "^4.0.3",
58
59
  "semver": "^7.7.3",
60
+ "tar": "^7.5.7",
59
61
  "zod": "^3.24.1"
60
62
  },
61
63
  "devDependencies": {
@@ -66,7 +68,6 @@
66
68
  "@types/semver": "^7.7.1",
67
69
  "@types/tar": "^6.1.13",
68
70
  "rimraf": "^6.0.1",
69
- "tar": "^7.5.7",
70
71
  "typescript": "^5.7.3",
71
72
  "vitest": "^2.1.8"
72
73
  },