DEV Community

Searchless
Searchless

Posted on • Originally published at searchless.ai

Google's Open Knowledge Format: A New Standard for AI Agent Knowledge Sharing

Originally published on The Searchless Journal

Google Cloud announced the Open Knowledge Format, abbreviated OKF, a specification for representing organizational knowledge in a format that AI agents, large language models, tools, and humans can all read and use. The format uses markdown files with YAML frontmatter, making it editable with standard text tools and immediately parseable by any system that processes structured documents. On the surface, this looks like a documentation standard. In practice, it is an attempt to solve one of the hardest problems in enterprise AI: giving models the context they need without locking that context inside a proprietary system.

The Problem OKF Addresses

Foundation models are powerful, but their power is limited by the information they have access to at inference time. A model can write code, summarize documents, and analyze datasets, but only if it has the right information about your specific organization, your data schemas, your business metrics, and your internal APIs. This knowledge typically lives scattered across data catalogs, internal wikis, shared drives, code repositories, and the heads of individual employees. AI agents that need this context to perform useful work cannot access it efficiently.

The problem is not that the knowledge does not exist. It is that the knowledge exists in formats and locations that are incompatible with how AI systems consume information. A Confluence page, a Tableau dashboard, and a BigQuery dataset view all contain useful organizational knowledge. None of them can be directly fed to an AI agent as context without extraction, transformation, and formatting.

OKF proposes to solve this by representing organizational knowledge in a common format that works across platforms. The same OKF document can be read by a human using a text editor, by a coding agent building an application, by a data analysis agent querying a dataset, or by an enterprise assistant answering an employee's question.

How OKF Structures Knowledge

The format has two levels. OKF documents are the trees, and OKF bundles are the forests. An OKF document is a single markdown file with YAML frontmatter that describes a concept. A concept could be a dataset, a metric, an API, or a table. A file named orders.md might describe the orders table in your data warehouse, including its schema, common query patterns, relationships to other tables, and business context.

The YAML frontmatter carries metadata. Key-value pairs specify the concept name, type, author, version, and other attributes that help systems understand what the document describes. The markdown body contains the human-readable description, which is also machine-parseable. This dual readability is the core design principle. The format does not require specialized tools to create or edit. Anyone who can write markdown can produce OKF documents.

An OKF bundle is a collection of related OKF documents. A bundle might describe an entire data domain, covering all the tables, metrics, and APIs relevant to a particular business function. Bundles can be shared between systems, allowing the same knowledge to be used by different AI agents and tools across an organization.

What Google Shipped

The announcement included reference implementations at both the producer and consumer ends. The producer is an enrichment agent that walks a BigQuery dataset and drafts an OKF concept document for every table and view. It then runs a second LLM pass that crawls authoritative documentation and enriches each concept with citations, schemas, and join paths. This is a proof of concept, not a required tool. Nothing about the OKF format mandates a specific agent framework or LLM.

The consumer side includes a static HTML visualizer that turns any OKF bundle into an interactive graph view in a single self-contained file. No backend, no installation, no data leaving the browser. This is a demonstration of how OKF can be consumed, not the only way. The expectation is that the ecosystem of producers and consumers will grow beyond what Google has shipped.

Three sample bundles were published as ready-to-browse examples. GA4 e-commerce data, Stack Overflow's public dataset, and Bitcoin blockchain data, each produced by the reference agent and committed to the repository as living examples of conformant OKF.

Who OKF Is For

The specification defines two roles. Producers are the people and systems that create and maintain OKF bundles. These include documentation teams, data engineers, platform teams, and automated systems that generate OKF documents from existing infrastructure. Consumers are the systems that use OKF bundles. These include coding agents, data analysis agents, research agents, internal enterprise assistants, and agentic workflows.

The producer-consumer model is deliberate. It separates the creation of knowledge from its consumption, which means that a single OKF bundle can serve many different AI use cases without modification. A data analysis agent might use the bundle to understand table schemas before writing a query. A coding agent might use it to understand API endpoints before building an integration. An enterprise assistant might use it to answer an employee's question about how a metric is calculated.

Implications For GEO And External AI Visibility

The most immediate application of OKF is internal. Enterprise AI systems need context about organizational data to function, and OKF provides a standardized way to deliver that context. But the format has implications for external AI visibility as well.

The same principles that make OKF useful for internal agents apply to external AI engines. When ChatGPT, Perplexity, or Gemini tries to answer a question about a company's products, services, or expertise, it relies on whatever information it can retrieve from the public web. Companies that publish structured, markdown-based descriptions of their offerings, their expertise areas, and their data are making the same bet that OKF makes internally: that providing clean, machine-readable context improves the quality of AI-generated answers.

There is a direct line between OKF's design philosophy and the broader GEO strategy of making organizational knowledge legible to AI engines. The companies that invest in structured knowledge representation internally will have a natural advantage when it comes to structured knowledge representation externally. The muscle of documenting what your organization knows, in a format that both humans and machines can read, transfers directly from internal OKF bundles to external content optimization.

The Standardization Question

Whether OKF becomes a widely adopted standard or remains a Google Cloud product depends on ecosystem support. The format itself is open. The reference implementations are open source. But the success of any standard depends on whether other platforms, tools, and organizations adopt it.

Early signals are mixed. The use of markdown with YAML frontmatter is already a well-established pattern in documentation systems, static site generators, and content management platforms. The specific schemas and metadata fields OKF defines are new but not radical. The barrier to adoption is low for producers. For consumers, the value proposition is clear: any tool that can read markdown can extract value from OKF documents.

The risk is that OKF competes with other emerging standards for AI agent context. The llms.txt proposal, OpenAPI specifications adapted for AI, and various proprietary knowledge graph formats all address overlapping problems. The market may fragment before it converges. For organizations deciding where to invest, the safest bet is on the format that is simplest to produce and most portable across consumers. OKF's markdown-first approach makes it a strong candidate on both counts.

For now, OKF is worth watching closely. It represents Google's most explicit attempt to standardize the bridge between organizational knowledge and AI systems. If it gains traction, it will reshape how companies structure their internal knowledge for AI consumption, and the practices developed internally will flow outward into how those companies optimize for AI visibility in the broader ecosystem.

Top comments (0)