@shrkcrft/cli 0.1.0-alpha.23 → 0.1.0-alpha.24

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 (33) hide show
  1. package/dist/commands/check.command.d.ts.map +1 -1
  2. package/dist/commands/check.command.js +109 -2
  3. package/dist/commands/command-catalog.d.ts +11 -0
  4. package/dist/commands/command-catalog.d.ts.map +1 -1
  5. package/dist/commands/command-catalog.js +91 -0
  6. package/dist/commands/finish.command.d.ts +3 -0
  7. package/dist/commands/finish.command.d.ts.map +1 -0
  8. package/dist/commands/finish.command.js +70 -0
  9. package/dist/commands/graph-code-subverbs.d.ts.map +1 -1
  10. package/dist/commands/graph-code-subverbs.js +42 -23
  11. package/dist/commands/help.command.d.ts.map +1 -1
  12. package/dist/commands/help.command.js +20 -2
  13. package/dist/commands/impact.command.d.ts.map +1 -1
  14. package/dist/commands/impact.command.js +17 -22
  15. package/dist/commands/smart-context.command.d.ts.map +1 -1
  16. package/dist/commands/smart-context.command.js +14 -37
  17. package/dist/commands/trace.command.d.ts.map +1 -1
  18. package/dist/commands/trace.command.js +73 -3
  19. package/dist/commands/wiring.command.d.ts +12 -0
  20. package/dist/commands/wiring.command.d.ts.map +1 -0
  21. package/dist/commands/wiring.command.js +384 -0
  22. package/dist/diff/collect-changed-paths.d.ts +5 -3
  23. package/dist/diff/collect-changed-paths.d.ts.map +1 -1
  24. package/dist/diff/collect-changed-paths.js +73 -36
  25. package/dist/diff/deleted-orphans.d.ts +42 -0
  26. package/dist/diff/deleted-orphans.d.ts.map +1 -0
  27. package/dist/diff/deleted-orphans.js +46 -0
  28. package/dist/finish/run-finish.d.ts +62 -0
  29. package/dist/finish/run-finish.d.ts.map +1 -0
  30. package/dist/finish/run-finish.js +239 -0
  31. package/dist/main.d.ts.map +1 -1
  32. package/dist/main.js +4 -0
  33. package/package.json +33 -33
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shrkcrft/cli",
3
- "version": "0.1.0-alpha.23",
3
+ "version": "0.1.0-alpha.24",
4
4
  "description": "SharkCraft CLI (`shrk`): structured project intelligence for AI coding agents.",
5
5
  "license": "MIT",
6
6
  "author": "SharkCraft contributors",
@@ -47,38 +47,38 @@
47
47
  "typecheck": "tsc --noEmit -p tsconfig.json"
48
48
  },
49
49
  "dependencies": {
50
- "@shrkcrft/core": "^0.1.0-alpha.23",
51
- "@shrkcrft/compress": "^0.1.0-alpha.23",
52
- "@shrkcrft/config": "^0.1.0-alpha.23",
53
- "@shrkcrft/workspace": "^0.1.0-alpha.23",
54
- "@shrkcrft/knowledge": "^0.1.0-alpha.23",
55
- "@shrkcrft/context": "^0.1.0-alpha.23",
56
- "@shrkcrft/rules": "^0.1.0-alpha.23",
57
- "@shrkcrft/paths": "^0.1.0-alpha.23",
58
- "@shrkcrft/templates": "^0.1.0-alpha.23",
59
- "@shrkcrft/plugin-api": "^0.1.0-alpha.23",
60
- "@shrkcrft/dashboard": "^0.1.0-alpha.23",
61
- "@shrkcrft/dashboard-api": "^0.1.0-alpha.23",
62
- "@shrkcrft/pipelines": "^0.1.0-alpha.23",
63
- "@shrkcrft/presets": "^0.1.0-alpha.23",
64
- "@shrkcrft/boundaries": "^0.1.0-alpha.23",
65
- "@shrkcrft/graph": "^0.1.0-alpha.23",
66
- "@shrkcrft/rule-graph": "^0.1.0-alpha.23",
67
- "@shrkcrft/structural-search": "^0.1.0-alpha.23",
68
- "@shrkcrft/impact-engine": "^0.1.0-alpha.23",
69
- "@shrkcrft/context-planner": "^0.1.0-alpha.23",
70
- "@shrkcrft/architecture-guard": "^0.1.0-alpha.23",
71
- "@shrkcrft/framework-scanners": "^0.1.0-alpha.23",
72
- "@shrkcrft/api-surface-diff": "^0.1.0-alpha.23",
73
- "@shrkcrft/quality-gates": "^0.1.0-alpha.23",
74
- "@shrkcrft/migrate": "^0.1.0-alpha.23",
75
- "@shrkcrft/generator": "^0.1.0-alpha.23",
76
- "@shrkcrft/importer": "^0.1.0-alpha.23",
77
- "@shrkcrft/inspector": "^0.1.0-alpha.23",
78
- "@shrkcrft/ai": "^0.1.0-alpha.23",
79
- "@shrkcrft/embeddings": "^0.1.0-alpha.23",
80
- "@shrkcrft/shared": "^0.1.0-alpha.23",
81
- "@shrkcrft/mcp-server": "^0.1.0-alpha.23",
50
+ "@shrkcrft/core": "^0.1.0-alpha.24",
51
+ "@shrkcrft/compress": "^0.1.0-alpha.24",
52
+ "@shrkcrft/config": "^0.1.0-alpha.24",
53
+ "@shrkcrft/workspace": "^0.1.0-alpha.24",
54
+ "@shrkcrft/knowledge": "^0.1.0-alpha.24",
55
+ "@shrkcrft/context": "^0.1.0-alpha.24",
56
+ "@shrkcrft/rules": "^0.1.0-alpha.24",
57
+ "@shrkcrft/paths": "^0.1.0-alpha.24",
58
+ "@shrkcrft/templates": "^0.1.0-alpha.24",
59
+ "@shrkcrft/plugin-api": "^0.1.0-alpha.24",
60
+ "@shrkcrft/dashboard": "^0.1.0-alpha.24",
61
+ "@shrkcrft/dashboard-api": "^0.1.0-alpha.24",
62
+ "@shrkcrft/pipelines": "^0.1.0-alpha.24",
63
+ "@shrkcrft/presets": "^0.1.0-alpha.24",
64
+ "@shrkcrft/boundaries": "^0.1.0-alpha.24",
65
+ "@shrkcrft/graph": "^0.1.0-alpha.24",
66
+ "@shrkcrft/rule-graph": "^0.1.0-alpha.24",
67
+ "@shrkcrft/structural-search": "^0.1.0-alpha.24",
68
+ "@shrkcrft/impact-engine": "^0.1.0-alpha.24",
69
+ "@shrkcrft/context-planner": "^0.1.0-alpha.24",
70
+ "@shrkcrft/architecture-guard": "^0.1.0-alpha.24",
71
+ "@shrkcrft/framework-scanners": "^0.1.0-alpha.24",
72
+ "@shrkcrft/api-surface-diff": "^0.1.0-alpha.24",
73
+ "@shrkcrft/quality-gates": "^0.1.0-alpha.24",
74
+ "@shrkcrft/migrate": "^0.1.0-alpha.24",
75
+ "@shrkcrft/generator": "^0.1.0-alpha.24",
76
+ "@shrkcrft/importer": "^0.1.0-alpha.24",
77
+ "@shrkcrft/inspector": "^0.1.0-alpha.24",
78
+ "@shrkcrft/ai": "^0.1.0-alpha.24",
79
+ "@shrkcrft/embeddings": "^0.1.0-alpha.24",
80
+ "@shrkcrft/shared": "^0.1.0-alpha.24",
81
+ "@shrkcrft/mcp-server": "^0.1.0-alpha.24",
82
82
  "@huggingface/transformers": "^3.7.5"
83
83
  },
84
84
  "publishConfig": {