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
tools/check_cron.py Normal file
View File

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