Install
openclaw skills install sqlite-readerRead and query SQLite database files. Use when user wants to inspect or extract data from .sqlite files, especially OpenClaw's main.sqlite memory database. Supports basic SELECT queries, table listing, and schema inspection.
openclaw skills install sqlite-readerTo read a SQLite file:
read_sqlite tool (not yet implemented - need to create script first)Currently no direct tool exists, but I'll create a Python script that can:
python scripts/read_sqlite.py --list-tables C:\path\to\database.sqlite
python scripts/read_sqlite.py --schema C:\path\to\database.sqlite users
python scripts/read_sqlite.py --query "SELECT * FROM sessions LIMIT 5" C:\path\to\database.sqlite
I need to create:
scripts/read_sqlite.py - Python script for SQLite operationsreferences/schema.md - SQLite schema reference