opencode-session-db
OpenCode Session DB
Read OpenCode sessions and messages directly from SQLite — no running server needed.
Database Location
~/.local/share/opencode/opencode.db # latest/beta channel
~/.local/share/opencode/opencode-{channel}.db # dev, local, etc.
Override: OPENCODE_DB env var. WAL mode is enabled; always open read-only.
Schema Overview
11 tables. The key ones for session reading:
More from dzianisv/opencode-plugins
readiness-check
Verify all OpenCode plugin services are healthy and ready. Use when diagnosing plugin issues, after deployment, or when services like Whisper, TTS, Supabase, or Telegram aren't working.
3plugin-testing
Verify plugin spec requirements with actionable test cases. Use when testing reflection or TTS plugins, validating code changes, or running the test suite before deployment.
3agent-evaluation
Evaluate GenAI agent task execution using LLM-as-judge. Produces structured scores (0-5), feedback, and improvement recommendations.
3feature-workflow
Standard workflow for developing features. Follow this process for all non-trivial changes - from planning through PR merge. Ensures proper testing, review, and CI verification.
3