cargo-hauler 0.4.0 → 0.4.1

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 (56) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/artifact/agent-bundle.manifest.json +1 -1
  3. package/artifact/claude/.claude-plugin/marketplace.json +1 -1
  4. package/artifact/claude/.claude-plugin/plugin.json +1 -1
  5. package/artifact/claude/INSTALL.md +1 -1
  6. package/artifact/claude/bin/cargo-hauler-flight.mjs +3 -3
  7. package/artifact/claude/bin/cargo-hauler.mjs +20 -8
  8. package/artifact/claude/hooks/event-route-session-start.mjs +2 -2
  9. package/artifact/claude/hooks/event-route-stop.mjs +2 -2
  10. package/artifact/claude/hooks/event-route-tool-after.mjs +2 -2
  11. package/artifact/claude/hooks/event-route-tool-before.mjs +2 -2
  12. package/artifact/claude/hooks/hooks-flight.mjs +1 -1
  13. package/artifact/claude/mcp/mcp-hauler-2b8242f9-flight.mjs +9 -7
  14. package/artifact/claude/mcp/mcp-hauler-2b8242f9.mjs +10 -8
  15. package/artifact/claude/mcp-apps/dashboard.html +1 -1
  16. package/artifact/claude/scripts/hauler.mjs +18 -6
  17. package/artifact/codex/.codex-plugin/plugin.json +1 -1
  18. package/artifact/codex/INSTALL.md +1 -1
  19. package/artifact/codex/bin/cargo-hauler-flight.mjs +3 -3
  20. package/artifact/codex/bin/cargo-hauler.mjs +20 -8
  21. package/artifact/codex/hooks/event-route-session-start.mjs +2 -2
  22. package/artifact/codex/hooks/event-route-stop.mjs +2 -2
  23. package/artifact/codex/hooks/event-route-tool-after.mjs +2 -2
  24. package/artifact/codex/hooks/event-route-tool-before.mjs +2 -2
  25. package/artifact/codex/hooks/hooks-flight.mjs +1 -1
  26. package/artifact/codex/mcp/mcp-hauler-2b8242f9-flight.mjs +9 -7
  27. package/artifact/codex/mcp/mcp-hauler-2b8242f9.mjs +10 -8
  28. package/artifact/codex/mcp-apps/dashboard.html +1 -1
  29. package/artifact/codex/scripts/hauler.mjs +18 -6
  30. package/artifact/cursor/.cursor-plugin/plugin.json +1 -1
  31. package/artifact/cursor/INSTALL.md +1 -1
  32. package/artifact/cursor/bin/cargo-hauler-flight.mjs +3 -3
  33. package/artifact/cursor/bin/cargo-hauler.mjs +20 -8
  34. package/artifact/cursor/hooks/event-route-session-start.mjs +2 -2
  35. package/artifact/cursor/hooks/event-route-stop.mjs +2 -2
  36. package/artifact/cursor/hooks/event-route-tool-after.mjs +2 -2
  37. package/artifact/cursor/hooks/event-route-tool-before.mjs +2 -2
  38. package/artifact/cursor/hooks/hooks-flight.mjs +1 -1
  39. package/artifact/cursor/install.mjs +1 -1
  40. package/artifact/cursor/mcp/mcp-hauler-2b8242f9-flight.mjs +9 -7
  41. package/artifact/cursor/mcp/mcp-hauler-2b8242f9.mjs +10 -8
  42. package/artifact/cursor/mcp-apps/dashboard.html +1 -1
  43. package/artifact/cursor/scripts/hauler.mjs +18 -6
  44. package/artifact/portable/INSTALL.md +1 -1
  45. package/artifact/portable/bin/cargo-hauler-flight.mjs +3 -3
  46. package/artifact/portable/bin/cargo-hauler.mjs +20 -8
  47. package/artifact/portable/install.mjs +1 -1
  48. package/artifact/portable/mcp/mcp-hauler-2b8242f9-flight.mjs +9 -7
  49. package/artifact/portable/mcp/mcp-hauler-2b8242f9.mjs +9 -7
  50. package/artifact/portable/mcp-apps/dashboard.html +1 -1
  51. package/artifact/portable/plugin.json +1 -1
  52. package/artifact/portable/scripts/hauler.mjs +18 -6
  53. package/dist/bin/cargo-hauler-flight.mjs +3 -3
  54. package/dist/bin/cargo-hauler.js +20 -8
  55. package/dist/bin/hauler.js +18 -6
  56. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0861873: Align the plugin's remaining hand-synced surfaces with agent-bundle framework mode: the `hauler_status` tool and the dashboard MCP App route now read the widget URI from one imported `APP_RESOURCE_URI` const that the compiler resolves statically (no duplicated `ui://` literals), the App template is declared route-relative, and the unit-test pool takes its `agent-bundle/meta` alias from the framework's `agentBundleRstest` preset instead of a hand-written fixture. No runtime behavior changes.
8
+ - 889b430: A ticket settles once its cargo process exits even when a surviving descendant (an orphaned helper or a daemonized child) keeps the output pipe open: the daemon drains for one more second, then stops reading instead of waiting for pipe EOF indefinitely.
9
+
3
10
  ## 0.4.0
4
11
 
5
12
  ### Minor Changes