cargo-hauler 0.4.7 → 0.4.8

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 (57) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +4 -1
  3. package/artifact/agent-bundle.manifest.json +1 -1
  4. package/artifact/claude/.claude-plugin/marketplace.json +1 -1
  5. package/artifact/claude/.claude-plugin/plugin.json +1 -1
  6. package/artifact/claude/INSTALL.md +1 -1
  7. package/artifact/claude/bin/cargo-hauler-flight.mjs +4 -4
  8. package/artifact/claude/bin/cargo-hauler.mjs +6 -6
  9. package/artifact/claude/hooks/event-route-session-start.mjs +2 -2
  10. package/artifact/claude/hooks/event-route-stop.mjs +2 -2
  11. package/artifact/claude/hooks/event-route-tool-after.mjs +2 -2
  12. package/artifact/claude/hooks/event-route-tool-before.mjs +2 -2
  13. package/artifact/claude/hooks/hooks-flight.mjs +4 -4
  14. package/artifact/claude/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
  15. package/artifact/claude/mcp/mcp-hauler-2b8242f9.mjs +8 -8
  16. package/artifact/claude/mcp-apps/dashboard.html +1 -1
  17. package/artifact/claude/scripts/hauler.mjs +4 -4
  18. package/artifact/codex/.codex-plugin/plugin.json +1 -1
  19. package/artifact/codex/INSTALL.md +1 -1
  20. package/artifact/codex/bin/cargo-hauler-flight.mjs +4 -4
  21. package/artifact/codex/bin/cargo-hauler.mjs +6 -6
  22. package/artifact/codex/hooks/event-route-session-start.mjs +2 -2
  23. package/artifact/codex/hooks/event-route-stop.mjs +2 -2
  24. package/artifact/codex/hooks/event-route-tool-after.mjs +2 -2
  25. package/artifact/codex/hooks/event-route-tool-before.mjs +2 -2
  26. package/artifact/codex/hooks/hooks-flight.mjs +4 -4
  27. package/artifact/codex/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
  28. package/artifact/codex/mcp/mcp-hauler-2b8242f9.mjs +8 -8
  29. package/artifact/codex/mcp-apps/dashboard.html +1 -1
  30. package/artifact/codex/scripts/hauler.mjs +4 -4
  31. package/artifact/cursor/.cursor-plugin/plugin.json +1 -1
  32. package/artifact/cursor/INSTALL.md +1 -1
  33. package/artifact/cursor/bin/cargo-hauler-flight.mjs +4 -4
  34. package/artifact/cursor/bin/cargo-hauler.mjs +6 -6
  35. package/artifact/cursor/hooks/event-route-session-start.mjs +2 -2
  36. package/artifact/cursor/hooks/event-route-stop.mjs +2 -2
  37. package/artifact/cursor/hooks/event-route-tool-after.mjs +2 -2
  38. package/artifact/cursor/hooks/event-route-tool-before.mjs +2 -2
  39. package/artifact/cursor/hooks/hooks-flight.mjs +4 -4
  40. package/artifact/cursor/install.mjs +1 -1
  41. package/artifact/cursor/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
  42. package/artifact/cursor/mcp/mcp-hauler-2b8242f9.mjs +8 -8
  43. package/artifact/cursor/mcp-apps/dashboard.html +1 -1
  44. package/artifact/cursor/scripts/hauler.mjs +4 -4
  45. package/artifact/portable/INSTALL.md +1 -1
  46. package/artifact/portable/bin/cargo-hauler-flight.mjs +4 -4
  47. package/artifact/portable/bin/cargo-hauler.mjs +6 -6
  48. package/artifact/portable/install.mjs +1 -1
  49. package/artifact/portable/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
  50. package/artifact/portable/mcp/mcp-hauler-2b8242f9.mjs +7 -7
  51. package/artifact/portable/mcp-apps/dashboard.html +1 -1
  52. package/artifact/portable/plugin.json +1 -1
  53. package/artifact/portable/scripts/hauler.mjs +4 -4
  54. package/dist/bin/cargo-hauler-flight.mjs +4 -4
  55. package/dist/bin/cargo-hauler.js +6 -6
  56. package/dist/bin/hauler.js +4 -4
  57. package/package.json +12 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 3ad6b7e: Declare no runtime `dependencies`: `npm install -g cargo-hauler` fetches one tarball and nothing else. 0.4.7 listed the build-time stack (`@agent-bundle/runtime` as a pkg.pr.new tarball, `bashjsast` as a `github:` ref, `effect`, `react`, `zod`, …) under `dependencies` even though every shipped file bundles what it uses, so npm 12's default `allow-remote=none` / `allow-git=none` refused the install (`EALLOWREMOTE` for the tarball, `EALLOWGIT` for the git ref). The whole stack now lives under `devDependencies`; the emitted packs and `dist/bin` executables are unchanged. (#82)
8
+
3
9
  ## 0.4.7
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -393,7 +393,10 @@ The npm package ships one plugin per host under `artifact/<host>` — the
393
393
  Claude Code plugin with its local marketplace, the Codex plugin, and the Cursor
394
394
  plugin with its `install.mjs` — plus three executables: `hauler` (the CLI),
395
395
  `cargo-hauler` (the routed commands), and `cargo-hauler-install`. Every pack
396
- also contains an `INSTALL.md` with the exact commands for that host.
396
+ also contains an `INSTALL.md` with the exact commands for that host. The
397
+ package declares no runtime dependencies — every library the packs and
398
+ executables use is bundled into them — so `npm install` fetches this one
399
+ tarball and nothing else.
397
400
 
398
401
  ### With the bundled installer
399
402