Fresh start - excluded large ROM JSON files

This commit is contained in:
OpenClaw Agent
2026-04-11 09:45:12 -05:00
commit 5deb387aa6
395 changed files with 47744 additions and 0 deletions

6
temp_check_db.py Normal file
View File

@@ -0,0 +1,6 @@
import sqlite3
conn = sqlite3.connect(r\"C:/Users/admin/.openclaw/memory.db\")
cursor = conn.cursor()
cursor.execute(\"SELECT name FROM sqlite_master WHERE type=chr(39)+chr(116)+chr(97)+chr(98)+chr(108)+chr(101)+chr(39)\")
for row in cursor.fetchall():
print(row[0])