chore(agents): replace sqlite with badger

Amolith created

Change summary

AGENTS.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

AGENTS.md 🔗

@@ -39,7 +39,7 @@ go test -v -run TestName ./path/to/package
 1. **Working-directory scoping**: One active session per directory. Use git worktrees for parallel sessions.
 2. **Token efficiency**: Uses single unicode symbols for task status (☐ ⟳ ☑ ☒ ⊗) instead of verbose markdown checkboxes or words.
 3. **Immediate feedback**: Commands that modify state output the full changed plan immediately, avoiding extra commands like `git status` after every change.
-4. **Event tracking**: All LLM-oriented commands are tracked with reasons in a SQLite database at `$XDG_CONFIG_HOME/nasin-pali/`.
+4. **Event tracking**: All LLM-oriented commands are tracked with reasons in a Badger database at `$XDG_CONFIG_HOME/nasin-pali/`.
 
 ### Command Structure
 
@@ -155,7 +155,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
 
 ## Future Features Not Yet Implemented
 
-- SQLite database for event tracking
+- Badger database for event tracking
 - Interactive TUI for watching events in real-time
 - Actual session storage/retrieval
 - Task ID generation and management