marionette 5.0.0-beta.1 → 5.0.0-beta.2

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 (59) hide show
  1. package/changelog.md +17 -0
  2. package/dist/agent-skill/SKILL.md +10 -0
  3. package/dist/docs/config/api-contracts/inventory.json +8150 -0
  4. package/dist/docs/config/api-contracts/semantics.json +2397 -0
  5. package/dist/docs/config/diagnostics/catalog.json +21 -0
  6. package/dist/docs/docs/agent-tools.md +27 -4
  7. package/dist/docs/docs/agents.md +14 -2
  8. package/dist/docs/docs/beta.md +19 -36
  9. package/dist/docs/docs/compact-reference.md +118 -0
  10. package/dist/docs/docs/consumer-lint.md +40 -0
  11. package/dist/docs/docs/data.api.md +1 -1
  12. package/dist/docs/docs/development.md +120 -0
  13. package/dist/docs/docs/installation.md +17 -11
  14. package/dist/docs/docs/migration-from-v4.md +1 -1
  15. package/dist/docs/docs/optional-backbone.md +1 -1
  16. package/dist/docs/docs/readme.md +2 -0
  17. package/dist/docs/docs/troubleshooting.md +135 -0
  18. package/dist/docs/manifest.json +64 -20
  19. package/dist/docs/packages/adapters/readme.md +5 -5
  20. package/dist/docs/packages/data/readme.md +1 -1
  21. package/dist/docs/packages/radio/readme.md +1 -1
  22. package/dist/docs/packages/utils/readme.md +1 -1
  23. package/dist/docs/readme.md +3 -3
  24. package/dist/docs/scripts/api-contracts/README.md +74 -0
  25. package/dist/docs/skills/marionette/SKILL.md +10 -0
  26. package/dist/docs/starter/AGENTS.md +46 -0
  27. package/dist/docs/starter/eslint.config.mjs +8 -0
  28. package/dist/docs/starter/gitignore +4 -0
  29. package/dist/docs/starter/index.html +1 -1
  30. package/dist/docs/starter/main.ts +33 -0
  31. package/dist/docs/starter/package.json +24 -3
  32. package/dist/docs/starter/playwright.config.mjs +13 -0
  33. package/dist/docs/starter/readme.md +51 -19
  34. package/dist/docs/starter/tsconfig.json +15 -0
  35. package/dist/docs/starter/vite.config.mjs +18 -0
  36. package/dist/docs/starter/workspace.browser.spec.mjs +49 -0
  37. package/dist/docs/starter/workspace.test.mjs +2 -1
  38. package/dist/docs/starter/workspace.ts +107 -0
  39. package/dist/docs/test/fixtures/docs-application-guides/package.json +7 -2
  40. package/dist/docs/test/fixtures/docs-application-guides/troubleshooting.mjs +30 -0
  41. package/dist/docs/upgradeGuide.md +28 -0
  42. package/dist/eslint/index.cjs +342 -0
  43. package/dist/eslint/index.d.cts +9 -0
  44. package/dist/eslint/index.d.ts +9 -0
  45. package/dist/eslint/index.js +340 -0
  46. package/dist/marionette.cjs +2 -1
  47. package/dist/marionette.cjs.map +1 -0
  48. package/dist/marionette.js +2 -1
  49. package/dist/marionette.js.map +1 -0
  50. package/dist/marionette.min.js +1 -1
  51. package/dist/marionette.min.js.map +1 -1
  52. package/dist/marionette.umd.js +2 -2
  53. package/dist/marionette.umd.js.map +1 -1
  54. package/package.json +33 -12
  55. package/readme.md +4 -3
  56. package/upgradeGuide.md +28 -0
  57. package/dist/docs/starter/main.mjs +0 -18
  58. package/dist/docs/starter/package-lock.json +0 -1279
  59. package/dist/docs/starter/workspace.mjs +0 -76
package/changelog.md CHANGED
@@ -1,5 +1,22 @@
1
+ ### v5.0.0-beta.2
2
+
3
+ > Now with source maps, so “the AI wrote it” is slightly less useful as a debugging strategy.
4
+
5
+ * Add embedded authored TypeScript source maps to runtime ESM and CommonJS outputs
6
+ * Add the optional `marionette/eslint` consumer plugin with the `MN0040` private-member rule
7
+ * Ship a generated compact contract reference, troubleshooting recipes, and optional MCP discovery guidance
8
+ * Ship a TypeScript starter with version-matched npm dependencies, application agent instructions,
9
+ typecheck, consumer lint, unit tests, Vite, and browser regressions
10
+ * Certify portable candidate starters, repeated Vite updates, installed consumer maps,
11
+ ownership boundaries, and browser performance/retention evidence
12
+
13
+ This candidate changes development support and distribution tooling, not the core
14
+ runtime API. Agent-effectiveness benchmarks remain unscored.
15
+
1
16
  ### v5.0.0-beta.1
2
17
 
18
+ > A little structure for your app, because “the AI seemed confident” is not an architecture.
19
+
3
20
  * Established `@mnjs` as the companion package scope: utils, radio, data, and
4
21
  adapters; the core package remains `marionette`
5
22
  * Added a packaged application starter and beta trial guide, plus release
@@ -52,6 +52,16 @@ Start with packaged `docs/agents.md`, then use these source paths from the manif
52
52
  - State or a diagnostic: `docs/marionette.state.md` or
53
53
  `docs/diagnostic-catalog.md`.
54
54
 
55
+ If the client already has the Marionette documentation MCP configured, consult
56
+ the `marionette://catalog` resource before searching. Use remote documents only
57
+ when version and source match this installation. Pass the exact installed
58
+ `version` to every tool and follow `nextOffset` until it is `null` to retrieve the
59
+ complete page or example.
60
+ Setup instructions: https://marionettejs.com/docs/mcp/. A URL in these instructions
61
+ does not install an MCP connection. Keep the installed docs when the catalog is
62
+ unsupported or the service is unavailable. Website WebMCP only controls its own
63
+ examples, not this application.
64
+
55
65
  The manifest is the available-page index. Follow direct links for the selected
56
66
  task instead of loading the whole reference. For v4 work, use matching migration
57
67
  material and installed APIs; these v5 instructions are not an upgrade plan.