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

5
temp_db.py Normal file
View File

@@ -0,0 +1,5 @@
import sqlite3
conn = sqlite3.connect(r'C:/Users/admin/.openclaw/memory.db')
cur = conn.cursor()
cur.execute('SELECT name FROM sqlite_master WHERE type=\'table\'')
for r in cur.fetchall(): print(r[0])