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 +1 -1
- package/SKILL.md +1 -1
- package/check-db.js +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/SKILL.md
CHANGED
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