Frontmatter
| id | 9726 |
| title | Architectural Consolidation of AI Database Paths |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Apr 6, 2026, 12:21 AM |
| updatedAt | Apr 6, 2026, 3:50 AM |
| githubUrl | https://github.com/neomjs/neo/issues/9726 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Apr 6, 2026, 12:23 AM |
Architectural Consolidation of AI Database Paths
Closedenhancementai

The current local AI database persistence layer has devolved into a scattered set of top-level directories (
chroma-neo-knowledge-base,chroma-neo-memory-core,neo-memory-core-sqlite).Because these databases often store highly dense binary chunks, placing them in locations targeted by agent workspace parsers creates a high risk of context bloat and catastrophic loops.
Tasks:
.neo-ai-data/root directory to protect against indexing algorithms parsing gigabytes of binary data..neo-ai-data/chroma/,.neo-ai-data/neo-sqlite/, and.neo-ai-data/backups/..gitignoreto use this single folder definition rather than ad-hoc rules.syncMemoryChromaToNeoscript to fully utilize thecommanderpattern, supporting--target-providerdynamically rather than hardcoding.