portawhip 0.1.0 → 0.2.0

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 (82) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +1 -1
  3. package/adapters/hooks/universal-hook.mjs +348 -348
  4. package/adapters/instructions/generate.mjs +114 -114
  5. package/core/registry/capability-docs.mjs +145 -145
  6. package/core/registry/capability-graph-compiler.mjs +90 -90
  7. package/core/registry/capability-graph.mjs +53 -53
  8. package/core/registry/capability-kind.mjs +9 -9
  9. package/core/registry/cli-enrich.mjs +316 -316
  10. package/core/registry/cli-enrich.test.mjs +119 -119
  11. package/core/registry/discover.mjs +379 -379
  12. package/core/registry/enrich.mjs +213 -213
  13. package/core/registry/enrich.test.mjs +53 -53
  14. package/core/registry/eval-harvest.mjs +93 -93
  15. package/core/registry/eval-harvest.test.mjs +64 -64
  16. package/core/registry/registry.mjs +197 -197
  17. package/core/router/concept-vector.mjs +91 -91
  18. package/core/router/concept-vector.test.mjs +36 -36
  19. package/core/router/dense-embedder.mjs +242 -242
  20. package/core/router/fusion.mjs +18 -18
  21. package/core/router/hybrid-router.mjs +323 -323
  22. package/core/router/intent-evidence.mjs +60 -60
  23. package/core/router/prompt-hygiene.mjs +31 -31
  24. package/core/router/route-entry.mjs +74 -74
  25. package/core/router/router-cli.mjs +199 -199
  26. package/core/router/router-eval.mjs +166 -166
  27. package/core/router/router-live.test.mjs +69 -69
  28. package/core/router/router.test.mjs +838 -838
  29. package/core/router/scorer.mjs +72 -72
  30. package/core/router/sparse-retriever.mjs +79 -79
  31. package/core/router/tokenize.mjs +42 -42
  32. package/core/state/bundle-state.mjs +117 -117
  33. package/core/state/bundle-state.test.mjs +175 -175
  34. package/core/state/config.mjs +115 -115
  35. package/core/state/feedback.mjs +129 -129
  36. package/core/state/feedback.test.mjs +181 -181
  37. package/core/state/stack-detect.mjs +102 -102
  38. package/core/state/stack-detect.test.mjs +64 -64
  39. package/core/surface/config-sync-backends.mjs +224 -224
  40. package/core/surface/connector-targets.mjs +205 -205
  41. package/core/surface/discover-hooks.mjs +151 -151
  42. package/core/surface/discover-hooks.test.mjs +63 -63
  43. package/core/surface/discover-surface.test.mjs +49 -49
  44. package/core/surface/extra-hosts.mjs +48 -48
  45. package/core/surface/extra-hosts.test.mjs +24 -24
  46. package/core/surface/hook-targets.mjs +102 -102
  47. package/core/surface/surface-copy-targets.mjs +37 -37
  48. package/core/surface/surface-inventory.mjs +98 -98
  49. package/core/surface/surface-matrix.mjs +133 -133
  50. package/core/surface/surface-matrix.test.mjs +90 -90
  51. package/docs/router-eval-set.jsonl +15 -15
  52. package/hooks.manifest.yaml +16 -16
  53. package/package.json +49 -49
  54. package/recipe.yaml +247 -247
  55. package/router.config.yaml +120 -120
  56. package/scripts/bundles.mjs +131 -131
  57. package/scripts/doctor.mjs +117 -117
  58. package/scripts/embedded-hooks.mjs +27 -27
  59. package/scripts/hosts.mjs +60 -60
  60. package/scripts/link/link-connectors.mjs +190 -190
  61. package/scripts/link/link-connectors.test.mjs +111 -111
  62. package/scripts/link/link-hooks.mjs +259 -259
  63. package/scripts/link/link-hooks.test.mjs +112 -112
  64. package/scripts/link/link-surfaces.mjs +188 -188
  65. package/scripts/link/link-surfaces.test.mjs +76 -76
  66. package/scripts/load.mjs +143 -143
  67. package/scripts/surface-inventory.mjs +6 -6
  68. package/scripts/sync/agents-surface.mjs +55 -55
  69. package/scripts/sync/agents-surface.test.mjs +18 -18
  70. package/scripts/sync/auto-sync.mjs +135 -135
  71. package/scripts/sync/auto-sync.test.mjs +41 -41
  72. package/scripts/sync/import-surfaces.mjs +331 -331
  73. package/scripts/sync/import-surfaces.test.mjs +106 -106
  74. package/scripts/sync/sync-config.mjs +230 -230
  75. package/scripts/sync/sync-config.test.mjs +141 -141
  76. package/scripts/sync/sync-surfaces.mjs +229 -229
  77. package/scripts/sync/sync-surfaces.test.mjs +66 -66
  78. package/scripts/tui.mjs +613 -613
  79. package/scripts/uninstall-all.mjs +39 -39
  80. package/server/mcp-server.mjs +129 -129
  81. package/skills/portawhip/SKILL.md +80 -80
  82. package/surface-matrix.yaml +93 -93
package/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  All notable user-facing changes are documented here.
4
4
 
5
+ ## [0.2.0](https://github.com/VVeb1250/portawhip/compare/portawhip-v0.1.0...portawhip-v0.2.0) (2026-07-12)
6
+
7
+
8
+ ### Features
9
+
10
+ * expand router capability discovery ([31597a9](https://github.com/VVeb1250/portawhip/commit/31597a9778b4e897c7fa9db29c7d56f25bab0c5f))
11
+ * expose public npx entry points ([c20b633](https://github.com/VVeb1250/portawhip/commit/c20b63323ea63d97337467c0d3a73b22cda92d84))
12
+ * harden connector release flow ([08748de](https://github.com/VVeb1250/portawhip/commit/08748de4de7b54caa9ad924bba3beefb760dc39f))
13
+ * manage connector and hook links in TUI ([57cf2ac](https://github.com/VVeb1250/portawhip/commit/57cf2ac74ebbe9ac201b7c785cd52c8c734c2e63))
14
+ * **router:** differentiate push and pull intent handling ([7e7a3b7](https://github.com/VVeb1250/portawhip/commit/7e7a3b7874a0cc40ce3f889bf5d63e0d1796eb39))
15
+ * **router:** sharpen route() instruction for intent extraction ([e20d273](https://github.com/VVeb1250/portawhip/commit/e20d273942fe620577d8a550fada2145da31ab2d))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * load packaged router defaults outside workspaces ([e59ab46](https://github.com/VVeb1250/portawhip/commit/e59ab46e56881596cd60790314fe6a7555862896))
21
+ * share packaged runtime fallback across CLI surfaces ([974acd4](https://github.com/VVeb1250/portawhip/commit/974acd4fbda7c942c957120c4a12ef02f7e811dd))
22
+ * trust direct curated triggers on clean installs ([c40e908](https://github.com/VVeb1250/portawhip/commit/c40e90843ed6a2cd968ed6c1d92c9062bd514ec5))
23
+ * update js-yaml to v5, add-mcp to 1.14, ai-config-sync-manager to 0.1.7 ([d252eb7](https://github.com/VVeb1250/portawhip/commit/d252eb7b788a3cb279d1250baa91515d53a97831))
24
+ * use cross-platform Node test discovery ([caed0a7](https://github.com/VVeb1250/portawhip/commit/caed0a79a59bebfc62ed169212cca75dc95bc6b5))
25
+
5
26
  ## 0.1.0 - 2026-07-12
6
27
 
7
28
  First public npm release.
package/README.md CHANGED
@@ -155,7 +155,7 @@ Please report security issues through the private process in [SECURITY.md](SECUR
155
155
 
156
156
  ## Contributing
157
157
 
158
- Bug reports, host adapters, routing eval cases, and documentation improvements are welcome. Start with [CONTRIBUTING.md](CONTRIBUTING.md) and the open [issues](https://github.com/VVeb1250/portawhip/issues).
158
+ Bug reports, host adapters, routing eval cases, and documentation improvements are welcome. Start with [CONTRIBUTING.md](CONTRIBUTING.md) and the open [issues](https://github.com/VVeb1250/portawhip/issues). Release process and maintainer workflow live in [MAINTAINING.md](MAINTAINING.md).
159
159
 
160
160
  ## License
161
161