Install
openclaw skills install @akdira/okf-knowledge-formatCreate, read, validate, and manage OKF (Open Knowledge Format) knowledge bundles for AI agents. Google's vendor-neutral markdown+YAML spec.
openclaw skills install @akdira/okf-knowledge-formatThis skill teaches AI agents how to read, traverse, create, and maintain knowledge bases stored in Google's Open Knowledge Format (OKF) using the okf-toolkit CLI.
The Open Knowledge Format (OKF) is an open, vendor-neutral specification for representing knowledge as a directory tree of markdown files with YAML frontmatter. Announced by Google Cloud on June 12, 2026, it is designed to be both human-readable and AI-agent-friendly.
Key concepts:
.md file = one unit of knowledge. Has YAML frontmatter between --- delimitersRequired:
type (string) — e.g., "BigQuery Table", "API Endpoint", "Metric", "Playbook", "Reference"Recommended:
title (string)description (string)resource (URI string)tags (YAML list)timestamp (ISO 8601 string)Start by reading the bundle's index.md. This file lists all top-level sections with links. Follow those links to discover individual concepts.
The type field tells you what kind of knowledge this is:
BigQuery Table → Contains schema definitions, partitioning info, usage notesMetric → Contains a business metric definition, SQL query, business rulesPlaybook → Contains operational procedures, severity levels, step-by-step instructionsAPI Endpoint → Contains request/response formats, authentication, examplesUse the okf-toolkit CLI:
okf new <bundle-path> <concept-id>
Or create manually with proper frontmatter (YAML between --- delimiters + markdown body).
Always validate after making changes:
okf validate <bundle-path>
okf list <bundle> # List all concepts
okf show <bundle> <id> # Display a concept
okf search <bundle> <q> # Full-text search
okf index <bundle> # Auto-generate index.md
okf graph <bundle> # Visualize link graph
okf stats <bundle> # Statistics + tag cloud
okf init <path> # Create new bundle
okf indexOKF consumers MUST tolerate unknown frontmatter keys. If you encounter a field you don't recognize, skip it rather than failing.
pip install git+https://github.com/akdira/okf-toolkit.gitCreated by akdira.