@toon-protocol/client-mcp 0.18.0 → 0.20.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 (33) hide show
  1. package/README.md +5 -7
  2. package/dist/app/index.html +69 -69
  3. package/dist/{chunk-VA7XC4FD.js → chunk-3DDN4CJQ.js} +17 -1
  4. package/dist/{chunk-VA7XC4FD.js.map → chunk-3DDN4CJQ.js.map} +1 -1
  5. package/dist/{chunk-FXPDLGDN.js → chunk-5SFBB4PJ.js} +168 -38
  6. package/dist/chunk-5SFBB4PJ.js.map +1 -0
  7. package/dist/{chunk-LR7W2ISE.js → chunk-HMD5EVQI.js} +11 -2
  8. package/dist/{chunk-LR7W2ISE.js.map → chunk-HMD5EVQI.js.map} +1 -1
  9. package/dist/{chunk-LSPAGZXL.js → chunk-HSSJFB3I.js} +1426 -213
  10. package/dist/chunk-HSSJFB3I.js.map +1 -0
  11. package/dist/{chunk-56TTQYS7.js → chunk-KYQUVXEY.js} +2 -2
  12. package/dist/{chunk-XQUUFAIM.js → chunk-LN2OF264.js} +4 -2
  13. package/dist/{chunk-CTDRHEDX.js → chunk-SLMGETW7.js} +2 -2
  14. package/dist/{chunk-CTDRHEDX.js.map → chunk-SLMGETW7.js.map} +1 -1
  15. package/dist/{chunk-32QD72IL.js → chunk-T3WCTWRP.js} +2 -2
  16. package/dist/daemon.js +7 -7
  17. package/dist/{ed25519-U4PTEOFD.js → ed25519-VBPL32VX.js} +2 -2
  18. package/dist/{hmac-CMZORX4Y.js → hmac-GNBDA4UC.js} +3 -3
  19. package/dist/index.d.ts +11 -8
  20. package/dist/index.js +8 -8
  21. package/dist/mcp.js +7 -7
  22. package/dist/{node-WPA2UDEH-72L4MKGB.js → node-WPA2UDEH-SRYDHHAV.js} +3 -3
  23. package/dist/{node-WPA2UDEH-72L4MKGB.js.map → node-WPA2UDEH-SRYDHHAV.js.map} +1 -1
  24. package/dist/{sha512-4LOCATJH.js → sha512-D7TTPT7I.js} +3 -3
  25. package/package.json +6 -6
  26. package/dist/chunk-FXPDLGDN.js.map +0 -1
  27. package/dist/chunk-LSPAGZXL.js.map +0 -1
  28. /package/dist/{chunk-56TTQYS7.js.map → chunk-KYQUVXEY.js.map} +0 -0
  29. /package/dist/{chunk-XQUUFAIM.js.map → chunk-LN2OF264.js.map} +0 -0
  30. /package/dist/{chunk-32QD72IL.js.map → chunk-T3WCTWRP.js.map} +0 -0
  31. /package/dist/{ed25519-U4PTEOFD.js.map → ed25519-VBPL32VX.js.map} +0 -0
  32. /package/dist/{hmac-CMZORX4Y.js.map → hmac-GNBDA4UC.js.map} +0 -0
  33. /package/dist/{sha512-4LOCATJH.js.map → sha512-D7TTPT7I.js.map} +0 -0
package/README.md CHANGED
@@ -288,11 +288,11 @@ The integration suite lives in `src/__integration__/`.
288
288
 
289
289
  ## Publishing
290
290
 
291
- This package is **published to npm automatically by CI/CD**, in lockstep with the
292
- repo's release tag (the same `vX.Y.Z` semantic-release cuts for
293
- `@toon-protocol/relay`). On a release, `publish-relay-images.yml` builds
294
- this package, sets its version to the tag, and runs
295
- `pnpm --filter @toon-protocol/client-mcp publish --access public`.
291
+ This package is **published to npm automatically by CI/CD** via
292
+ [changesets](https://github.com/changesets/changesets): `.github/workflows/release.yml`
293
+ runs `pnpm changeset publish` on every push to `main`, using the org `NPM_TOKEN`
294
+ secret. It ships whenever a changeset targeting it lands — independently of any
295
+ other repo's release cadence. Never run `npm publish` manually.
296
296
 
297
297
  It is **self-contained**: its `@toon-protocol/*` workspace deps (`client`, `core`)
298
298
  are **bundled into `dist`** at build time (tsup `noExternal`), so the published
@@ -302,5 +302,3 @@ packages (`fastify`, `@modelcontextprotocol/sdk`, `nostr-tools`, `viem`, `ws`,
302
302
  `@solana/web3.js`) installed only when you use those chains.
303
303
  A guard test (`src/package-structure.test.ts`) fails the build if a
304
304
  `@toon-protocol/*` runtime dep ever leaks in.
305
-
306
- To publish manually: `pnpm --filter @toon-protocol/client-mcp build && pnpm --filter @toon-protocol/client-mcp publish --access public`.