cargo-hauler 0.4.3 → 0.4.4

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 (58) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +1 -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 +6 -3
  8. package/artifact/claude/bin/cargo-hauler.mjs +8 -5
  9. package/artifact/claude/hooks/event-route-session-start.mjs +21 -10
  10. package/artifact/claude/hooks/event-route-stop.mjs +21 -10
  11. package/artifact/claude/hooks/event-route-tool-after.mjs +21 -10
  12. package/artifact/claude/hooks/event-route-tool-before.mjs +21 -10
  13. package/artifact/claude/hooks/hooks-flight.mjs +23 -6
  14. package/artifact/claude/mcp/mcp-hauler-2b8242f9-flight.mjs +29 -9
  15. package/artifact/claude/mcp/mcp-hauler-2b8242f9.mjs +661 -61
  16. package/artifact/claude/mcp-apps/dashboard.html +1 -1
  17. package/artifact/claude/scripts/hauler.mjs +3 -3
  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 +6 -3
  21. package/artifact/codex/bin/cargo-hauler.mjs +8 -5
  22. package/artifact/codex/hooks/event-route-session-start.mjs +21 -10
  23. package/artifact/codex/hooks/event-route-stop.mjs +21 -10
  24. package/artifact/codex/hooks/event-route-tool-after.mjs +21 -10
  25. package/artifact/codex/hooks/event-route-tool-before.mjs +21 -10
  26. package/artifact/codex/hooks/hooks-flight.mjs +23 -6
  27. package/artifact/codex/mcp/mcp-hauler-2b8242f9-flight.mjs +29 -9
  28. package/artifact/codex/mcp/mcp-hauler-2b8242f9.mjs +661 -61
  29. package/artifact/codex/mcp-apps/dashboard.html +1 -1
  30. package/artifact/codex/scripts/hauler.mjs +3 -3
  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 +6 -3
  34. package/artifact/cursor/bin/cargo-hauler.mjs +8 -5
  35. package/artifact/cursor/hooks/event-route-session-start.mjs +21 -10
  36. package/artifact/cursor/hooks/event-route-stop.mjs +21 -10
  37. package/artifact/cursor/hooks/event-route-tool-after.mjs +21 -10
  38. package/artifact/cursor/hooks/event-route-tool-before.mjs +21 -10
  39. package/artifact/cursor/hooks/hooks-flight.mjs +23 -6
  40. package/artifact/cursor/install.mjs +1 -1
  41. package/artifact/cursor/mcp/mcp-hauler-2b8242f9-flight.mjs +29 -9
  42. package/artifact/cursor/mcp/mcp-hauler-2b8242f9.mjs +661 -61
  43. package/artifact/cursor/mcp-apps/dashboard.html +1 -1
  44. package/artifact/cursor/scripts/hauler.mjs +3 -3
  45. package/artifact/portable/INSTALL.md +1 -1
  46. package/artifact/portable/bin/cargo-hauler-flight.mjs +6 -3
  47. package/artifact/portable/bin/cargo-hauler.mjs +8 -5
  48. package/artifact/portable/install.mjs +1 -1
  49. package/artifact/portable/mcp/mcp-hauler-2b8242f9-flight.mjs +7 -4
  50. package/artifact/portable/mcp/mcp-hauler-2b8242f9.mjs +638 -49
  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 +3 -3
  54. package/dist/bin/cargo-hauler-flight.mjs +6 -3
  55. package/dist/bin/cargo-hauler-install.js +27 -6
  56. package/dist/bin/cargo-hauler.js +8 -5
  57. package/dist/bin/hauler.js +3 -3
  58. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 92e168c: Bump `agent-bundle` and `@agent-bundle/runtime` to the pkg.pr.new preview at `42539ff5f`. With agent-bundle#461 a pass-through `tool/before` result no longer auto-approves, so the hook now answers `allow` only when every command in the input was rewritten onto (or already runs through) the hauler exec path, `continue` + `updatedInput` when a rewritten cargo command shares the input with something the daemon does not govern (`cd … && cargo build`, `cargo test | tail`), and plain `continue` (no decision) for every other tool call; it never returns `ask`. Accept the `confirmed` lineage resolution (agent-bundle#486) in ticket attribution.
8
+
3
9
  ## 0.4.3
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -552,7 +552,7 @@ data is the daemon's own. The repository ships no preview harness of its own.
552
552
 
553
553
  agent-bundle does not yet have an npm release; this repository pins the
554
554
  [pkg.pr.new](https://pkg.pr.new) preview of main commit
555
- [`5775351fb`](https://github.com/ScriptedAlchemy/agent-bundle/commit/5775351fbc1c82e2861a9d69cad78adb086d052d)
555
+ [`42539ff5f`](https://github.com/ScriptedAlchemy/agent-bundle/commit/42539ff5fbafdff0656317b841a50100ac0fc141)
556
556
  for both `agent-bundle` and `@agent-bundle/runtime`. `inspect` reports the
557
557
  `agent` component kind as unavailable on every host (agent-bundle G5
558
558
  deferral); this plugin defines no agents. Two framework limitations observed