@machfivetechchicago/machvive-webmcp-ai 5.7.1 → 5.7.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 (2) hide show
  1. package/README.md +17 -1
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -259,6 +259,22 @@ themes unless you scope your override inside your own media query.
259
259
  Every combination of OS preference and `theme` is verified to meet WCAG AA
260
260
  (≥ 4.5:1) across the full UI. If you override tokens, re-check your own contrast.
261
261
 
262
+ ## 🤖 Claude Code skill
263
+
264
+ If you build with [Claude Code](https://claude.com/claude-code), install the
265
+ companion skill so Claude knows how to use these components — the API, and the
266
+ constraints that quietly break integrations:
267
+
268
+ ```
269
+ /plugin marketplace add Mach-Five-Group/machvive-webmcp-ai
270
+ /plugin install machvive-webmcp@machvive
271
+ ```
272
+
273
+ Claude then knows to import analytics before registering tools, that the polyfill
274
+ needs a secure context, that a top-level import breaks under SSR, and that
275
+ `sideEffects: false` silently drops the component registrations — the four things
276
+ that fail in ways that look like something else.
277
+
262
278
  ## TypeScript
263
279
 
264
280
  Declarations ship with the package — no `@types/*` needed. Importing a component
@@ -321,7 +337,7 @@ Use the dynamic `import()` form shown above.
321
337
  ## Documentation
322
338
 
323
339
  Full guide, architecture notes, and adoption constraints live on the
324
- **[project Wiki](https://github.com/Mach-Five-Group/machvive-webmcp-ai/wiki/Machvive-WebMCP-Polyfill-Web-Component-Lib)**.
340
+ **[project Wiki](https://github.com/Mach-Five-Group/machvive-webmcp-ai/wiki)**.
325
341
 
326
342
  ## License
327
343
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@machfivetechchicago/machvive-webmcp-ai",
3
- "version": "5.7.1",
3
+ "version": "5.7.2",
4
4
  "description": "I don't want to use your product's agent; I want my agent to be able to use your product.",
5
5
  "keywords": [
6
6
  "WebMCP",
@@ -66,5 +66,8 @@
66
66
  "devDependencies": {
67
67
  "fake-indexeddb": "^6.2.5",
68
68
  "jsdom": "^29.1.1"
69
+ },
70
+ "dependencies": {
71
+ "@machfivetechchicago/machvive-webmcp-ai": "^5.7.1"
69
72
  }
70
73
  }