gossipcat 0.5.2 → 0.5.4
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.
- package/README.md +2 -2
- package/dist-dashboard/assets/index-Chrn1WHu.js +78 -0
- package/dist-dashboard/assets/index-DUZrYB2U.css +1 -0
- package/dist-dashboard/index.html +2 -2
- package/dist-mcp/default-skills/catalog.json +24 -0
- package/dist-mcp/default-skills/implementation-discipline.md +77 -0
- package/dist-mcp/mcp-server.js +3753 -2088
- package/docs/HANDBOOK.md +13 -0
- package/docs/RULES.md +7 -5
- package/package.json +3 -2
- package/dist-dashboard/assets/index-BggwL1Da.css +0 -1
- package/dist-dashboard/assets/index-BxhrNkau.js +0 -78
package/README.md
CHANGED
|
@@ -302,12 +302,12 @@ Gossipcat is on **[npm](https://www.npmjs.com/package/gossipcat)** and **[GitHub
|
|
|
302
302
|
|
|
303
303
|
**Pin to a specific npm version:**
|
|
304
304
|
```bash
|
|
305
|
-
npm install -g gossipcat@0.
|
|
305
|
+
npm install -g gossipcat@0.5.2
|
|
306
306
|
```
|
|
307
307
|
|
|
308
308
|
**Pin to a specific GitHub release tarball** (version-locked, bypasses npm registry):
|
|
309
309
|
```bash
|
|
310
|
-
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.
|
|
310
|
+
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.5.2/gossipcat-0.5.2.tgz
|
|
311
311
|
```
|
|
312
312
|
|
|
313
313
|
**Project-local install** (each project gets its own gossipcat):
|