According to Dynamic Insight by Beating monitoring, the biggest obstacle for large-scale model deployment in enterprises is the lack of internal background knowledge (such as table structure, workflows, or API documentation). Due to knowledge being scattered across different systems, code comments, or in employees' minds, developers have to repeatedly build retrieval pipelines for different AI tools.
To address this issue, Google has released the Open Knowledge Format (OKF) v0.1 specification, formally standardizing Andrej Karpathy's proposed "LLM-Wiki" schema. The specification requires no new software or development kits and advocates for all internal knowledge to be written in intuitive Markdown text files, hosted alongside the source code in the code repository.
Technically, the OKF knowledge package consists of a Markdown directory tree. Each file uses text labels at the top to declare type, description, and date, with links between files establishing reference relationships. It also includes an index.md for quick schema previews and a log.md to track update histories.
Andrej Karpathy pointed out that humans dislike updating Wikis because manually maintaining the directory and cross-file links is extremely tedious. AI, on the other hand, does not forget to update cross-references and can batch edit up to 15 files at once, making it ideal to play the role of a "documentation manager" for daily maintenance.
Furthermore, the specification adopts a lenient parsing model. Even if AI-generated files omit fields, have incorrect types, or leave dead links when autonomously creating documents, the system will not crash with an error, ensuring a high level of fault tolerance.
