index-knowledge
Generates hierarchical AGENTS.md knowledge base files with complexity-scored subdirectory documentation.
- Discovers project structure through parallel explore agents, bash analysis, LSP codemap, and existing documentation to build a complete codebase map
- Scores directories by file count, code ratio, symbol density, and module boundaries to determine which subdirectories warrant their own AGENTS.md files
- Generates root AGENTS.md with overview, structure, conventions, and anti-patterns, then creates subdirectory files in parallel without repeating parent content
- Supports
--create-newmode to regenerate from scratch and--max-depthto limit directory traversal; defaults to update mode that modifies existing files and creates new ones as needed
index-knowledge
Generate hierarchical AGENTS.md files. Root + complexity-scored subdirectories.
Usage
--create-new # Read existing → remove all → regenerate from scratch
--max-depth=2 # Limit directory depth (default: 5)
Default: Update mode (modify existing + create new where warranted)
Workflow (High-Level)
- Discovery + Analysis (concurrent)
- Launch parallel explore agents (multiple Task calls in one message)
More from tursodatabase/turso
code-quality
General Correctness rules, Rust patterns, comments, avoiding over-engineering. When writing code always take these into account
1.0Kdebugging
How to debug tursodb using Bytecode comparison, logging, ThreadSanitizer, deterministic simulation, and corruption analysis tools
634async-io-model
Explanations of common asynchronous patterns used in tursodb. Involves IOResult, state machines, re-entrancy pitfalls, CompletionGroup. Always use these patterns in `core` when doing anything IO
607storage-format
SQLite file format, B-trees, pages, cells, overflow, freelist that is used in tursodb
607testing
How to write tests, when to use each type of test, and how to run them. Contains information about conversion of `.test` to `.sqltest`, and how to write `.sqltest` and rust tests
601pr-workflow
General guidelines for Commits, formatting, CI, dependencies, security
599