@vibe-validate/cli 0.17.0-rc3 → 0.17.0

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 (47) hide show
  1. package/config-templates/minimal.yaml +19 -8
  2. package/config-templates/typescript-library.yaml +19 -8
  3. package/config-templates/typescript-nodejs.yaml +19 -8
  4. package/config-templates/typescript-react.yaml +19 -8
  5. package/dist/bin/vibe-validate +54 -3
  6. package/dist/bin/vibe-validate.d.ts +5 -0
  7. package/dist/bin/vibe-validate.d.ts.map +1 -1
  8. package/dist/bin/vibe-validate.js +54 -3
  9. package/dist/bin/vibe-validate.js.map +1 -1
  10. package/dist/bin/vv +54 -3
  11. package/dist/bin.js +10 -0
  12. package/dist/bin.js.map +1 -1
  13. package/dist/commands/create-extractor.d.ts +13 -0
  14. package/dist/commands/create-extractor.d.ts.map +1 -0
  15. package/dist/commands/create-extractor.js +790 -0
  16. package/dist/commands/create-extractor.js.map +1 -0
  17. package/dist/commands/doctor.d.ts.map +1 -1
  18. package/dist/commands/doctor.js +172 -126
  19. package/dist/commands/doctor.js.map +1 -1
  20. package/dist/commands/pre-commit.d.ts.map +1 -1
  21. package/dist/commands/pre-commit.js +177 -63
  22. package/dist/commands/pre-commit.js.map +1 -1
  23. package/dist/commands/run.d.ts.map +1 -1
  24. package/dist/commands/run.js +15 -14
  25. package/dist/commands/run.js.map +1 -1
  26. package/dist/schemas/watch-pr-schema.d.ts +2 -2
  27. package/dist/services/ci-providers/github-actions.d.ts.map +1 -1
  28. package/dist/services/ci-providers/github-actions.js +3 -2
  29. package/dist/services/ci-providers/github-actions.js.map +1 -1
  30. package/dist/utils/git-detection.d.ts.map +1 -1
  31. package/dist/utils/git-detection.js +18 -18
  32. package/dist/utils/git-detection.js.map +1 -1
  33. package/dist/utils/project-id.d.ts +1 -2
  34. package/dist/utils/project-id.d.ts.map +1 -1
  35. package/dist/utils/project-id.js +6 -11
  36. package/dist/utils/project-id.js.map +1 -1
  37. package/dist/utils/runner-adapter.d.ts.map +1 -1
  38. package/dist/utils/runner-adapter.js +1 -0
  39. package/dist/utils/runner-adapter.js.map +1 -1
  40. package/dist/utils/secret-scanning.d.ts +72 -0
  41. package/dist/utils/secret-scanning.d.ts.map +1 -0
  42. package/dist/utils/secret-scanning.js +205 -0
  43. package/dist/utils/secret-scanning.js.map +1 -0
  44. package/dist/utils/validate-workflow.d.ts.map +1 -1
  45. package/dist/utils/validate-workflow.js +9 -1
  46. package/dist/utils/validate-workflow.js.map +1 -1
  47. package/package.json +10 -6
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Create Extractor Command
3
+ *
4
+ * Interactive scaffold generator for vibe-validate extractor plugins.
5
+ * Creates a fully-functional plugin directory with tests, samples, and documentation.
6
+ */
7
+ import type { Command } from 'commander';
8
+ export declare function createExtractorCommand(program: Command): void;
9
+ /**
10
+ * Show verbose help with detailed documentation
11
+ */
12
+ export declare function showCreateExtractorVerboseHelp(): void;
13
+ //# sourceMappingURL=create-extractor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-extractor.d.ts","sourceRoot":"","sources":["../../src/commands/create-extractor.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAiCzC,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAgD7D;AAioBD;;GAEG;AACH,wBAAgB,8BAA8B,IAAI,IAAI,CAsHrD"}