cargo-hauler 0.6.13 → 0.6.14

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 (78) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +1 -1
  3. package/artifact/.claude-plugin/marketplace.json +1 -1
  4. package/artifact/.claude-plugin/plugin.json +1 -1
  5. package/artifact/.codex-plugin/plugin.json +1 -1
  6. package/artifact/.cursor-plugin/plugin.json +1 -1
  7. package/artifact/INSTALL.md +1 -1
  8. package/artifact/agent-bundle.compile-evidence.json +1 -1
  9. package/artifact/agent-bundle.manifest.json +1 -1
  10. package/artifact/bin/cargo-hauler-flight.mjs +8 -8
  11. package/artifact/bin/cargo-hauler.mjs +9 -9
  12. package/artifact/hooks/event-route-session-start.claude.mjs +295 -97
  13. package/artifact/hooks/event-route-session-start.codex.mjs +295 -97
  14. package/artifact/hooks/event-route-session-start.cursor.mjs +295 -97
  15. package/artifact/hooks/event-route-stop.claude.mjs +295 -97
  16. package/artifact/hooks/event-route-stop.codex.mjs +295 -97
  17. package/artifact/hooks/event-route-stop.cursor.mjs +295 -97
  18. package/artifact/hooks/event-route-tool-after.claude.execute.mjs +302 -108
  19. package/artifact/hooks/event-route-tool-after.claude.mjs +234 -57
  20. package/artifact/hooks/event-route-tool-after.codex.execute.mjs +302 -108
  21. package/artifact/hooks/event-route-tool-after.codex.mjs +234 -57
  22. package/artifact/hooks/event-route-tool-after.cursor.execute.mjs +302 -108
  23. package/artifact/hooks/event-route-tool-after.cursor.mjs +234 -57
  24. package/artifact/hooks/event-route-tool-before.claude.execute.mjs +302 -108
  25. package/artifact/hooks/event-route-tool-before.claude.mjs +231 -54
  26. package/artifact/hooks/event-route-tool-before.codex.execute.mjs +302 -108
  27. package/artifact/hooks/event-route-tool-before.codex.mjs +231 -54
  28. package/artifact/hooks/event-route-tool-before.cursor.execute.mjs +302 -108
  29. package/artifact/hooks/event-route-tool-before.cursor.mjs +231 -54
  30. package/artifact/hooks/hooks-flight.mjs +17 -29
  31. package/artifact/install.mjs +1 -1
  32. package/artifact/mcp/mcp-hauler-2b8242f9-flight.mjs +18 -30
  33. package/artifact/mcp/mcp-hauler-2b8242f9.mjs +204 -43
  34. package/artifact/mcp-apps/dashboard.html +1 -1
  35. package/artifact/plugin.json +1 -1
  36. package/artifact/scripts/hauler.mjs +8 -8
  37. package/artifact/skills/hauler-dashboard/SKILL.md +1 -1
  38. package/dist/.claude-plugin/marketplace.json +1 -1
  39. package/dist/.claude-plugin/plugin.json +1 -1
  40. package/dist/.codex-plugin/plugin.json +1 -1
  41. package/dist/.cursor-plugin/plugin.json +1 -1
  42. package/dist/INSTALL.md +1 -1
  43. package/dist/README.md +1 -1
  44. package/dist/agent-bundle.compile-evidence.json +1 -1
  45. package/dist/agent-bundle.manifest.json +1 -1
  46. package/dist/agent-bundle.package-compile-evidence.json +1 -1
  47. package/dist/bin/cargo-hauler-flight.mjs +8 -8
  48. package/dist/bin/cargo-hauler-install.js +4515 -148
  49. package/dist/bin/cargo-hauler.mjs +9 -9
  50. package/dist/bin/hauler.js +8 -8
  51. package/dist/hooks/event-route-session-start.claude.mjs +295 -97
  52. package/dist/hooks/event-route-session-start.codex.mjs +295 -97
  53. package/dist/hooks/event-route-session-start.cursor.mjs +295 -97
  54. package/dist/hooks/event-route-stop.claude.mjs +295 -97
  55. package/dist/hooks/event-route-stop.codex.mjs +295 -97
  56. package/dist/hooks/event-route-stop.cursor.mjs +295 -97
  57. package/dist/hooks/event-route-tool-after.claude.execute.mjs +302 -108
  58. package/dist/hooks/event-route-tool-after.claude.mjs +234 -57
  59. package/dist/hooks/event-route-tool-after.codex.execute.mjs +302 -108
  60. package/dist/hooks/event-route-tool-after.codex.mjs +234 -57
  61. package/dist/hooks/event-route-tool-after.cursor.execute.mjs +302 -108
  62. package/dist/hooks/event-route-tool-after.cursor.mjs +234 -57
  63. package/dist/hooks/event-route-tool-before.claude.execute.mjs +302 -108
  64. package/dist/hooks/event-route-tool-before.claude.mjs +231 -54
  65. package/dist/hooks/event-route-tool-before.codex.execute.mjs +302 -108
  66. package/dist/hooks/event-route-tool-before.codex.mjs +231 -54
  67. package/dist/hooks/event-route-tool-before.cursor.execute.mjs +302 -108
  68. package/dist/hooks/event-route-tool-before.cursor.mjs +231 -54
  69. package/dist/hooks/hooks-flight.mjs +17 -29
  70. package/dist/install.mjs +1 -1
  71. package/dist/mcp/mcp-hauler-2b8242f9-flight.mjs +18 -30
  72. package/dist/mcp/mcp-hauler-2b8242f9.mjs +204 -43
  73. package/dist/mcp-apps/dashboard.html +1 -1
  74. package/dist/package.json +4 -4
  75. package/dist/plugin.json +1 -1
  76. package/dist/scripts/hauler.mjs +8 -8
  77. package/dist/skills/hauler-dashboard/SKILL.md +1 -1
  78. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 1805d07: Select semantic event routes with Agent Bundle capability requirements instead of host names (#149).
8
+
3
9
  ## 0.6.13
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -909,7 +909,7 @@ ships no preview harness of its own.
909
909
 
910
910
  agent-bundle does not yet have an npm release; this repository pins the
911
911
  [pkg.pr.new](https://pkg.pr.new) preview of main commit
912
- [`9197015b9`](https://github.com/ScriptedAlchemy/agent-bundle/commit/9197015b9ae5088eee75c7d2d11a40890b37b367)
912
+ [`b435f7b91`](https://github.com/ScriptedAlchemy/agent-bundle/commit/b435f7b9179271cbff81d3e40d14ee342cbd65dd)
913
913
  for both `agent-bundle` and `@agent-bundle/runtime`. `inspect` reports the
914
914
  `agent` component kind as unavailable on every host (agent-bundle G5
915
915
  deferral); this plugin defines no agents.
@@ -1 +1 @@
1
- {"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","name":"cargo-hauler-marketplace","owner":{"name":"cargo-hauler"},"plugins":[{"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","name":"cargo-hauler","source":"./","version":"0.6.13"}]}
1
+ {"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","name":"cargo-hauler-marketplace","owner":{"name":"cargo-hauler"},"plugins":[{"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","name":"cargo-hauler","source":"./","version":"0.6.14"}]}
@@ -1 +1 @@
1
- {"author":{"name":"cargo-hauler"},"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","name":"cargo-hauler","version":"0.6.13"}
1
+ {"author":{"name":"cargo-hauler"},"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","name":"cargo-hauler","version":"0.6.14"}
@@ -1 +1 @@
1
- {"author":{"name":"cargo-hauler"},"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","hooks":"./.codex-plugin/hooks.json","interface":{"capabilities":["mcp","hooks","skills"],"category":"Productivity","defaultPrompt":["Help me use cargo-hauler."],"developerName":"cargo-hauler","displayName":"cargo-hauler","longDescription":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","shortDescription":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks."},"mcpServers":"./.codex-plugin/mcp.json","name":"cargo-hauler","skills":"./skills/","version":"0.6.13"}
1
+ {"author":{"name":"cargo-hauler"},"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","hooks":"./.codex-plugin/hooks.json","interface":{"capabilities":["mcp","hooks","skills"],"category":"Productivity","defaultPrompt":["Help me use cargo-hauler."],"developerName":"cargo-hauler","displayName":"cargo-hauler","longDescription":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","shortDescription":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks."},"mcpServers":"./.codex-plugin/mcp.json","name":"cargo-hauler","skills":"./skills/","version":"0.6.14"}
@@ -1 +1 @@
1
- {"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","displayName":"cargo-hauler","hooks":"./.cursor-plugin/hooks.json","mcpServers":"./.cursor-plugin/mcp.json","name":"cargo-hauler","skills":"./skills/","version":"0.6.13"}
1
+ {"description":"Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.","displayName":"cargo-hauler","hooks":"./.cursor-plugin/hooks.json","mcpServers":"./.cursor-plugin/mcp.json","name":"cargo-hauler","skills":"./skills/","version":"0.6.14"}
@@ -2,7 +2,7 @@
2
2
 
3
3
  Coalesce, schedule, and stream cargo so concurrent agent sessions share compiles instead of fighting locks.
4
4
 
5
- Version: `0.6.13`
5
+ Version: `0.6.14`
6
6
 
7
7
  Run these commands from this bundle directory. The bundle is self-contained: every command below is
8
8
  a host command or the bundled installer, and nothing requires the `agent-bundle` CLI. Where that CLI is