memory-lucia 2.0.3 → 2.0.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 CHANGED
@@ -104,7 +104,7 @@ SQLite backend with tables:
104
104
 
105
105
  ## 📋 Version
106
106
 
107
- Current: 2.0.3
107
+ Current: 2.0.4
108
108
 
109
109
  ## 📄 License
110
110
 
package/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: memory-v2
3
- version: 2.0.3
3
+ version: 2.0.4
4
4
  description: |
5
5
  Advanced memory system for OpenClaw agents with priority analysis,
6
6
  learning tracking, decision recording, and skill evolution.
package/check-db.js ADDED
@@ -0,0 +1,13 @@
1
+ const sqlite3 = require('sqlite3').verbose();
2
+ const db = new sqlite3.Database('../memory-v2/memory-v2.5.db');
3
+
4
+ // Check memory_decisions table structure
5
+ db.all("PRAGMA table_info(memory_decisions)", (err, rows) => {
6
+ if (err) {
7
+ console.error('Error:', err);
8
+ } else {
9
+ console.log('memory_decisions columns:');
10
+ rows.forEach(r => console.log('- ' + r.name + ' (' + r.type + ')'));
11
+ }
12
+ db.close();
13
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memory-lucia",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Advanced memory system for OpenClaw agents with priority analysis, learning tracking, decision recording, and skill evolution",
5
5
  "main": "api/index.js",
6
6
  "scripts": {