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.
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/artifact/agent-bundle.manifest.json +1 -1
- package/artifact/claude/.claude-plugin/marketplace.json +1 -1
- package/artifact/claude/.claude-plugin/plugin.json +1 -1
- package/artifact/claude/INSTALL.md +1 -1
- package/artifact/claude/bin/cargo-hauler-flight.mjs +6 -3
- package/artifact/claude/bin/cargo-hauler.mjs +8 -5
- package/artifact/claude/hooks/event-route-session-start.mjs +21 -10
- package/artifact/claude/hooks/event-route-stop.mjs +21 -10
- package/artifact/claude/hooks/event-route-tool-after.mjs +21 -10
- package/artifact/claude/hooks/event-route-tool-before.mjs +21 -10
- package/artifact/claude/hooks/hooks-flight.mjs +23 -6
- package/artifact/claude/mcp/mcp-hauler-2b8242f9-flight.mjs +29 -9
- package/artifact/claude/mcp/mcp-hauler-2b8242f9.mjs +661 -61
- package/artifact/claude/mcp-apps/dashboard.html +1 -1
- package/artifact/claude/scripts/hauler.mjs +3 -3
- package/artifact/codex/.codex-plugin/plugin.json +1 -1
- package/artifact/codex/INSTALL.md +1 -1
- package/artifact/codex/bin/cargo-hauler-flight.mjs +6 -3
- package/artifact/codex/bin/cargo-hauler.mjs +8 -5
- package/artifact/codex/hooks/event-route-session-start.mjs +21 -10
- package/artifact/codex/hooks/event-route-stop.mjs +21 -10
- package/artifact/codex/hooks/event-route-tool-after.mjs +21 -10
- package/artifact/codex/hooks/event-route-tool-before.mjs +21 -10
- package/artifact/codex/hooks/hooks-flight.mjs +23 -6
- package/artifact/codex/mcp/mcp-hauler-2b8242f9-flight.mjs +29 -9
- package/artifact/codex/mcp/mcp-hauler-2b8242f9.mjs +661 -61
- package/artifact/codex/mcp-apps/dashboard.html +1 -1
- package/artifact/codex/scripts/hauler.mjs +3 -3
- package/artifact/cursor/.cursor-plugin/plugin.json +1 -1
- package/artifact/cursor/INSTALL.md +1 -1
- package/artifact/cursor/bin/cargo-hauler-flight.mjs +6 -3
- package/artifact/cursor/bin/cargo-hauler.mjs +8 -5
- package/artifact/cursor/hooks/event-route-session-start.mjs +21 -10
- package/artifact/cursor/hooks/event-route-stop.mjs +21 -10
- package/artifact/cursor/hooks/event-route-tool-after.mjs +21 -10
- package/artifact/cursor/hooks/event-route-tool-before.mjs +21 -10
- package/artifact/cursor/hooks/hooks-flight.mjs +23 -6
- package/artifact/cursor/install.mjs +1 -1
- package/artifact/cursor/mcp/mcp-hauler-2b8242f9-flight.mjs +29 -9
- package/artifact/cursor/mcp/mcp-hauler-2b8242f9.mjs +661 -61
- package/artifact/cursor/mcp-apps/dashboard.html +1 -1
- package/artifact/cursor/scripts/hauler.mjs +3 -3
- package/artifact/portable/INSTALL.md +1 -1
- package/artifact/portable/bin/cargo-hauler-flight.mjs +6 -3
- package/artifact/portable/bin/cargo-hauler.mjs +8 -5
- package/artifact/portable/install.mjs +1 -1
- package/artifact/portable/mcp/mcp-hauler-2b8242f9-flight.mjs +7 -4
- package/artifact/portable/mcp/mcp-hauler-2b8242f9.mjs +638 -49
- package/artifact/portable/mcp-apps/dashboard.html +1 -1
- package/artifact/portable/plugin.json +1 -1
- package/artifact/portable/scripts/hauler.mjs +3 -3
- package/dist/bin/cargo-hauler-flight.mjs +6 -3
- package/dist/bin/cargo-hauler-install.js +27 -6
- package/dist/bin/cargo-hauler.js +8 -5
- package/dist/bin/hauler.js +3 -3
- 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
|
-
[`
|
|
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
|