A Git-Based Wiki for AI Agents Inspired by Karpathy's Vision
A new wiki system allows AI agents to maintain and access knowledge in Markdown files stored in a Git repository. This approach avoids complex databases and enables portable, version-controlled knowledge sharing.

A developer has created a wiki layer for AI agents that uses Markdown files and Git as the source of truth. The system includes a Bleve (BM25) and SQLite index for search functionality, running locally in a user's home directory. This design allows users to clone the wiki and take their knowledge with them, embodying a vision long discussed by AI researcher Andrej Karpathy.
The approach contrasts with many existing implementations that rely on Postgres, pgvector, Neo4j, or Kafka. By using Git, the system provides version control and portability, enabling agents to build on context across sessions without repasting information daily. This could make AI agents more efficient and consistent over time.
The project is still in its early stages, with no vector or graph database integration yet. However, it has sparked interest in the AI community for its simplicity and potential to make agent knowledge more portable. Future developments may include additional database support and enhanced collaboration features.