fivocell 4.1.5 → 4.1.6

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/package.json +1 -1
  2. package/scripts/demo.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fivocell",
3
- "version": "4.1.5",
3
+ "version": "4.1.6",
4
4
  "description": "FIVO Cell — Permanent Developer Memory. Learns how you think, build, fail, and grow.",
5
5
  "main": "dist/cli.js",
6
6
  "types": "dist/cli.d.ts",
package/scripts/demo.js CHANGED
@@ -65,11 +65,11 @@ function mcpCall(method, params) {
65
65
  (async () => {
66
66
  console.log(M.clear);
67
67
 
68
- banner('FIVO Cell v4.1.4 — Live Demo', 'Switch tools. Cell remembers.');
68
+ banner(`FIVO Cell v${pkg.version} — Live Demo`, 'Switch tools. Cell remembers.');
69
69
 
70
70
  // ─── 1. Version check
71
71
  step('1. Install + start (one-time setup)');
72
- out(' $ npm install -g fivocell@4.1.4');
72
+ out(` $ npm install -g fivocell@${pkg.version}`);
73
73
  out(' $ cell start');
74
74
  out(' $ cell --version');
75
75
  out('');
@@ -183,5 +183,5 @@ function mcpCall(method, params) {
183
183
 
184
184
  // ─── 8. Final tagline
185
185
  console.log();
186
- banner('Cell remembers. No need to re-explain.', 'npm install -g fivocell@4.1.4');
186
+ banner('Cell remembers. No need to re-explain.', `npm install -g fivocell@${pkg.version}`);
187
187
  })();