Skip to content
🆕 Nova skill: Humanizar! Reescreve texto PT-BR para remover AI slop e restaurar voz humana. Ver skill →

OKF — Open Knowledge Format

Open Knowledge Format (OKF) is a vendor-neutral spec (v0.1, June 2026, Google Cloud) for representing knowledge as a directory of markdown files with YAML frontmatter. No SDK required — if you can cat a file, you can read OKF.

Each file = one “concept” (table, metric, playbook, API endpoint, etc.). The structure is a bundle (directory) with concepts linked via standard Markdown links.

  • Create a knowledge base for AI agents
  • Convert existing documentation to OKF format
  • Validate OKF bundles against the specification
  • Enrich Markdown docs with standardized frontmatter
  • Structure wikis or knowledge bases as interoperable files
  • Make organizational knowledge agent-readable
Terminal window
npx skills add https://github.com/fabricioctelles/skills -s okf-open-knowledge-format
FieldRequired?Description
typeYESKind of concept (free-form string: BigQuery Table, Metric, Playbook, etc.)
titleRecommendedHuman-readable display name
descriptionRecommendedOne-sentence summary
resourceRecommendedURI identifying the underlying asset
tagsOptionalYAML list for cross-cutting categorization
my-bundle/
├── tables/
│ ├── users.md
│ └── orders.md
├── metrics/
│ └── revenue.md
├── playbooks/
│ └── onboarding.md
└── README.md
ModeDescription
createCreate OKF bundle from scratch based on description
convertConvert existing Markdown directory to OKF conformant
validateCheck conformance against the spec
enrichAdd missing frontmatter and suggest links between concepts

Specification created by Google Cloud (June 2026). Full spec included as a bundled reference in the skill.

📄 Full documentation on GitHub