What problem does it solve?
When debugging or auditing Hope Agent, you often need to know where sessions, memories, logs, background jobs, and knowledge indexes are persisted and how to inspect them safely without corrupting app state.
Core Features & Use Cases
- Data Store Map: Documents every database (sessions.db, memory.db, logs.db, background_jobs.db, cron.db, knowledge index) and important non-DB paths under the Hope Agent data root.
- Safe Read-Only Query Patterns: Provides sqlite3 -readonly and Python read-only URI patterns, plus ready-made SQL for sessions, messages FTS, logs, background jobs, and memories.
- Tool-First Priority Workflow: Directs you to dedicated model tools (sessions_search, recall_memory, get_settings, job_status) before falling back to raw SQL.
- Use Case: A user asks "where are my chat sessions stored and why did a background job fail?" Use this Skill to locate sessions.db and background_jobs.db, then run bounded read-only queries to diagnose the issue.
Quick Start
Ask the agent to show the 10 most recently updated sessions from the Hope Agent local database using a read-only SQLite query.