@yamo/memory-mesh 3.1.2 → 3.1.3

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 CHANGED
@@ -1,4 +1,4 @@
1
- # MemoryMesh (v3.1.0 Singularity Edition)
1
+ # MemoryMesh (Singularity Edition)
2
2
 
3
3
  Portable, semantic memory system for AI agents with automatic Layer 0 sanitization and **Autonomous Kernel Integration**.
4
4
 
@@ -7,7 +7,7 @@ Built on the [YAMO Protocol](https://github.com/yamo-protocol) for transparent a
7
7
  ## 🌌 Singularity Edition Highlights
8
8
 
9
9
  - **Intelligent Installer**: Automatically detects OpenClaw workspaces and performs a full kernel upgrade.
10
- - **YAMO Unified OS (v3.0)**: Natively includes the complete Macro (Specification) and Micro (Execution) workflow suite.
10
+ - **YAMO Unified OS**: Natively includes the complete Macro (Specification) and Micro (Execution) workflow suite.
11
11
  - **Ghost Protection**: Self-healing `AGENTS.md` injection to prevent narrative drift and maintain cognitive alignment.
12
12
  - **Autonomous Bootstrap**: Deploys `BOOTSTRAP.yamo` as the primary agent entry point for protocol-native execution.
13
13
  - **Surgical Deployment**: Intelligently skips global CLI clutter when working in project-specific modes.
@@ -33,7 +33,7 @@ npm install @yamo/memory-mesh
33
33
 
34
34
  ### šŸš€ Singularity Setup (OpenClaw)
35
35
 
36
- To upgrade your workspace to v3.1 fidelity:
36
+ To upgrade your workspace to full fidelity:
37
37
 
38
38
  ```bash
39
39
  npx memory-mesh-setup
package/bin/setup.js CHANGED
@@ -262,6 +262,7 @@ async function installTools(env) {
262
262
  }
263
263
 
264
264
  function showUsage(env) {
265
+ const pkg = JSON.parse(readFileSync(join(packageRoot, 'package.json'), 'utf-8'));
265
266
  log('\n✨ Setup Complete!', 'bright');
266
267
 
267
268
  if (env.isOpenClaw) {
@@ -269,11 +270,13 @@ function showUsage(env) {
269
270
  log(' • Ghost Protection active in AGENTS.md', 'cyan');
270
271
  log(' • Kernel entry point: BOOTSTRAP.yamo', 'cyan');
271
272
  log(' • Modules deployed to: yamo-native-agent/', 'cyan');
273
+ log(` • Version: ${pkg.version}`, 'cyan');
272
274
  log(' • REFRESH SESSION to activate v3.0 fidelity.', 'cyan');
273
275
  } else {
274
276
  log('\nšŸ“š STANDARD MODE:', 'blue');
275
277
  log(' • Skills installed to Claude/Gemini', 'blue');
276
278
  log(' • Use /yamo-super to start workflows', 'blue');
279
+ log(` • Version: ${pkg.version}`, 'blue');
277
280
  }
278
281
 
279
282
  log('\nšŸ”§ Tools:', 'blue');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamo/memory-mesh",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "description": "Portable semantic memory system with Layer 0 Scrubber for YAMO agents (v3 Singularity Edition)",
5
5
  "type": "module",
6
6
  "main": "lib/memory/index.js",