From 610295562e6645bea12c0ac606e7934f4de45ed9 Mon Sep 17 00:00:00 2001 From: Amolith Date: Fri, 24 Oct 2025 13:15:34 -0600 Subject: [PATCH] chore(agents): replace sqlite with badger --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 1af29480a9217950a356a5ef292c72793c0e2cb1..daf86b0c88d65f7c78ef711cc17fde8b47002fbb 100644 --- a/AGENTS.md +++ b/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