Back to the catalog

Awesome OKF

Bundle OKF 0.2 · 33 conceitos · yzfly/awesome-okf

Open source Repository Open in the app JSON README (API)

About

# Awesome OKF

> 本仓库自身就是一个符合 OKF v0.2 的知识包。本文件是 bundle 的根索引(渐进式展开);项目主页见 [README](README.md)。

# 文档与提案

* [README](README.md) - 项目总览与资源大全
* [OKF 规范中文版](docs/okf-spec-zh.md) - 规范全文翻译 + 硬要求/留白标注
* [发布博客中文版](docs/blog-zh.md) - Google Cloud 官方发布文译文
* [OKF 思想源头:Karpathy LLM Wiki](docs/karpathy-llm-wiki-zh.md) - 思想前身梳理
* [代码/PDF/图片支持度调研](docs/code-support-research-zh.md) - 实测 + 代码约定提案
* [HTML 一等公民提案](docs/html-first-class-proposal-zh.md) - 让 .html 成为合法概念
* [全网资料汇总](docs/resources-zh.md) - 官方/新闻/教程/社区
* [dogfooding 说明](docs/dogfooding-zh.md) - 本仓库如何自身合规
* [贡献指南](CONTRIBUTING.md) - 含 producer 插件约定

# Producer 插件(plugins/)

* [myokf-cli](plugins/myokf-cli/) - 统一命令行入口(myokf)
* [feishu-to-okf](plugins/feishu-to-okf/) - 飞书知识库 → OKF
* [awesome-to-okf](plugins/awesome-to-okf/) - GitHub awesome 列表 → OKF
* [obsidian-to-okf](plugins/obsidian-to-okf/) - Obsidian vault → OKF
* [notion-to-okf](plugins/notion-to-okf/) - Notion 导出 → OKF
* [html-to-okf](plugins/html-to-okf/) - HTML → OKF(双表示)
* [github-to-ok

Details

Kind
OKF bundles
Topic
Productivity
Publisher
yzfly
Origin
okf_github
Category
dados
Version
0.2
Stars
69
Forks
12
Last push
2026-08-30T01:16:55Z
Repository state
ativo
Language
Python
License
MIT
Added
2026-09-09 05:03:59
Updated
2026-09-09 05:03:59
Origin id
yzfly/awesome-okf:index.md

README

---
type: Overview
title: Awesome OKF
description: 中文世界第一个 OKF 落点:规范翻译、工具链、提案,以及一份活的合规范例。
tags: [okf, awesome, 中文]
lang: zh
generated: { by: human:yzfly, at: 2026-06-14T00:00:00Z }
author: 云中江树
---

# Awesome OKF

中文 | [English](./README.en.md)

开放知识格式(OKF)的中文资料和工具。规范翻译、七个 producer 插件、七个 Claude Code skill、三份向上游的扩展提案。

[OKF](https://github.com/GoogleCloudPlatform/knowledge-catalog/blob/main/okf/SPEC.md) 是 Google Cloud 发布的一份开放规范——把知识定义为一个目录的 Markdown 文件,带 YAML frontmatter,加一小套约定。没有运行时,没有 SDK。

> 📌 **规范已升到 v0.2**:新增出处(`sources`)、信任(`generated`/`verified`)、生命周期(`status`/`stale_after`)与可验算计算(`Attested Computation`)四个家族;两处破坏性变更是 `timestamp` → `generated.at`、正文 `# Citations` → 头信息 `sources`。本仓库(规范译文、校验器、七个插件、全部文档)已完成迁移,详见 [规范中文版 §13](./docs/okf-spec-zh.md#13-与-v01-的差异)。

## 快速开始

```bash
# 安装
pip install myokf-cli

# 从一个 GitHub 仓库拉取 OKF bundle
myokf from-github yzfly/awesome-okf -o ./kb

# 校验
myokf validate ./kb

# 打包成单文件网页
myokf to-web ./kb -o kb.html
```

## 内容

**工具(plugins/)**

| 工具 | 输入 → OKF |
|---|---|
| [feishu-to-okf](./plugins/feishu-to-okf/) | 飞书知识空间 / 文档 |
| [obsidian-to-okf](./plugins/obsidian-to-okf/) | Obsidian vault(wikilink → OKF 链接) |
| [notion-to-okf](./plugins/notion-to-okf/) | Notion Markdown 导出 |
| [github-to-okf](./plugins/github-to-okf/) | GitHub 仓库(提取代码符号) |
| [awesome-to-okf](./plugins/awesome-to-okf/) | GitHub awesome-xx 列表 |
| [html-to-okf](./plugins/html-to-okf/) | HTML 文件 |
| [myokf-cli](./plugins/myokf-cli/) | 以上工具的统一 CLI 入口 |

全部零第三方依赖,标准库,产物通过符合性校验。

**Skill(skills/)** —— Claude Code 配套工作流

| Skill | 用途 |
|---|---|
| [okf-creator](./skills/okf-creator/) | 从零创建高质量 OKF 知识库 |
| [awesome-to-okf](./skills/awesome-to-okf/) | 导入 awesome 列表并富化 |
| [book-to-okf](./skills/book-to-okf/) | 书 / 长文拆成互链概念库 |
| [code-to-okf](./skills/code-to-okf/) | 代码库转 OKF |
| [github-to-okf](./skills/github-to-okf/) | 仓库 → OKF 富化工作流 |
| [okf-to-book](./skills/okf-to-book/) | OKF 发布为 VitePress 文档站 |
| [okf-to-web](./skills/okf-to-web/) | OKF 打包成单文件网页(含图谱) |

**文档(docs/)**

- [OKF 规范中文版](./docs/okf-spec-zh.md) —— 全文翻译,标注硬要求与留白
- [发布博客中文版](./docs/blog-zh.md)
- [Karpathy 的 LLM Wiki](./docs/karpathy-llm-wiki-zh.md) —— OKF 的思想来源
- [代码 / PDF / 图片支持度调研](./docs/code-support-research-zh.md)
- [全网资料汇总](./docs/resources-zh.md)
- [仓库自身怎么做成 OKF bundle 的](./docs/dogfooding-zh.md)

**三份扩展提案** —— 向后兼容,不动任何 MUST

- [i18n](./docs/okf-spec-zh.md#中文生态议题i18n-扩展提案草案) —— `lang` + `canonical`
- [代码支持](./docs/code-support-research-zh.md) —— 类型词表、符号引用、行号锚点
- [HTML 一等公民](./docs/html-first-class-proposal-zh.md) —— `.html` 概念,双表示

## OKF 热门仓库

| 仓库 | ★ | 语言 | 形态 |
|---|---|---|---|
| [knowledge-catalog](./references/knowledge-catalog-repo.md)(官方) | [![★](https://img.shields.io/github/stars/GoogleCloudPlatform/knowledge-catalog?style=flat&label=%E2%98%85&color=444)](https://github.com/GoogleCloudPlatform/knowledge-catalog/stargazers) | HTML | OKF 规范 + 参考实现 + 示例 bundle 总入口 |
| [open-knowledge-format](https://github.com/GoogleCloudPlatform/open-knowledge-format) | [![★](https://img.shields.io/github/stars/GoogleCloudPlatform/open-knowledge-format?style=flat&label=%E2%98%85&color=444)](https://github.com/GoogleCloudPlatform/open-knowledge-format/stargazers) | HTML | **官方规范独立仓库**(2026-08 从 knowledge-catalog 拆出):SPEC v0.2 + PoC 生成 agent + 可视化器 + 4 个示例 bundle,规范的最新提交在这里 |
| [openwiki](./references/openwiki.md)(LangChain) | [![★](https://img.shields.io/github/stars/langchain-ai/openwiki?style=flat&label=%E2%98%85&color=444)](https://github.com/langchain-ai/openwiki/stargazers) | TS | LangChain 官方:为代码库写并维护 agent 文档的 CLI,**产出 OKF v0.2 bundle**(生态 star 最高) |
| [iwe](./references/iwe.md) | [![★](https://img.shields.io/github/stars/iwe-org/iwe?style=flat&label=%E2%98%85&color=444)](https://github.com/iwe-org/iwe/stargazers) | Rust | Markdown 知识图谱:编辑器 LSP + CLI + MCP,`iwe init --okf` 一等支持,模板以 v0.2 分发并在 CI 校验 |
| [zosmaai/pi-llm-wiki](https://github.com/zosmaai/pi-llm-wiki) | [![★](https://img.shields.io/github/stars/zosmaai/pi-llm-wiki?style=flat&label=%E2%98%85&color=444)](https://github.com/zosmaai/pi-llm-wiki/stargazers) | TS | 自维护、兼容 Obsidian 的知识库,原始资料→互链 wiki |
| [fellowgeek/mcp-memory](https://github.com/fellowgeek/mcp-memory) | [![★](https://img.shields.io/github/stars/fellowgeek/mcp-memory?style=flat&label=%E2%98%85&color=444)](https://github.com/fellowgeek/mcp-memory/stargazers) | Python | OKF 为底的 MCP server,给 agent 持久长期记忆 + SQL 检索 |
| [coleam00/cole-medin-knowledge-base](https://github.com/coleam00/cole-medin-knowledge-base) | [![★](https://img.shields.io/github/stars/coleam00/cole-medin-knowledge-base?style=flat&label=%E2%98%85&color=444)](https://github.com/coleam00/cole-medin-knowledge-base/stargazers) | JS | OKF 知识库 + Karpathy 式 LLM wiki 合成产物 |
| [UmairBaig8/okf-generator](https://github.com/UmairBaig8/okf-generator) | [![★](https://img.shields.io/github/stars/UmairBaig8/okf-generator?style=flat&label=%E2%98%85&color=444)](https://github.com/UmairBaig8/okf-generator/stargazers) | Python | OKF bundle 生成器:Claude skill + OpenCode 集成 |
| [jyjeanne/okf-rs](https://github.com/jyjeanne/okf-rs) | [![★](https://img.shields.io/github/stars/jyjeanne/okf-rs?style=flat&label=%E2%98%85&color=444)](https://github.com/jyjeanne/okf-rs/stargazers) | Rust | Rust 工具链:生成 / 校验 / serve OKF bundle |
| [openknowledge-sh/openknowledge](https://github.com/openknowledge-sh/openknowledge) | [![★](https://img.shields.io/github/stars/openknowledge-sh/openknowledge?style=flat&label=%E2%98%85&color=444)](https://github.com/openknowledge-sh/openknowledge/stargazers) | Go | 管理 OKF bundle 的 Go CLI |
| [saschb2b/okf-studio](https://github.com/saschb2b/okf-studio) | [![★](https://img.shields.io/github/stars/saschb2b/okf-studio?style=flat&label=%E2%98%85&color=444)](https://github.com/saschb2b/okf-studio/stargazers) | TS | OKF bundle 的原生桌面阅读器,指向一个目录即可浏览 |
| [aws-samples/sample-okf-llm-wiki](https://github.com/aws-samples/sample-okf-llm-wiki) | [![★](https://img.shields.io/github/stars/aws-samples/sample-okf-llm-wiki?style=flat&label=%E2%98%85&color=444)](https://github.com/aws-samples/sample-okf-llm-wiki/stargazers) | Python | AWS 官方示例:把数据转成 OKF bundle 并对外提供 |
| [JuneYaooo/lineage-skill](https://github.com/JuneYaooo/lineage-skill) | [![★](https://img.shields.io/github/stars/JuneYaooo/lineage-skill?style=flat&label=%E2%98%85&color=444)](https://github.com/JuneYaooo/lineage-skill/stargazers) | Python | 带出处(lineage)蒸馏的 Agent Skill,输出 OKF 包 |
| [psinetron/echoes-vault-opencode](https://github.com/psinetron/echoes-vault-opencode) | [![★](https://img.shields.io/github/stars/psinetron/echoes-vault-opencode?style=flat&label=%E2%98%85&color=444)](https://github.com/psinetron/echoes-vault-opencode/stargazers) | TS | OpenCode 持久记忆插件,底层用 OKF |
| [guhcostan/claude-mega-brain](https://github.com/guhcostan/claude-mega-brain) | [![★](https://img.shields.io/github/stars/guhcostan/claude-mega-brain?style=flat&label=%E2%98%85&color=444)](https://github.com/guhcostan/claude-mega-brain/stargazers) | Python | Claude Code 的 OKF 知识上下文注入插件 |
| [takeshy/obsidian-gemini-helper](https://github.com/takeshy/obsidian-gemini-helper) | [![★](https://img.shields.io/github/stars/takeshy/obsidian-gemini-helper?style=flat&label=%E2%98%85&color=444)](https://github.com/takeshy/obsidian-gemini-helper/stargazers) | TS | 支持 OKF 知识源的 Obsidian Gemini 助手 |
| [coleam00/cole-medin-ai-coding](https://github.com/coleam00/cole-medin-ai-coding) | [![★](https://img.shields.io/github/stars/coleam00/cole-medin-ai-coding?style=flat&label=%E2%98%85&color=444)](https://github.com/coleam00/cole-medin-ai-coding/stargazers) | Python | Cole Medin AI 编程视频的 OKF 知识包 |
| [okf-gem](./references/okf-gem.md) | [![★](https://img.shields.io/github/stars/serradura/okf?style=flat&label=%E2%98%85&color=444)](https://github.com/serradura/okf/stargazers) | Ruby | 创作 skill + CLI/库 + 图谱,覆盖 bundle 全生命周期 |
| [OWOX Model Canvas](./references/owox-model-canvas.md) | [![★](https://img.shields.io/github/stars/OWOX/models?style=flat&label=%E2%98%85&color=444)](https://github.com/OWOX/models/stargazers) | TS | 可视化建模 / 创作端(公司维护) |
| [0dust/OKFy](https://github.com/0dust/OKFy) | [![★](https://img.shields.io/github/stars/0dust/OKFy?style=flat&label=%E2%98%85&color=444)](https://github.com/0dust/OKFy/stargazers) | TS | 文档 → agent 可读 OKF bundle 转换器 |
| [okf-knowledge](./references/okf-knowledge.md) | [![★](https://img.shields.io/github/stars/sniperunder123/okf-knowledge?style=flat&label=%E2%98%85&color=444)](https://github.com/sniperunder123/okf-knowledge/stargazers) | Python | Claude Code `/okf` skill |
| [PoorvaJ-WW/okft](https://github.com/PoorvaJ-WW/okft) | [![★](https://img.shields.io/github/stars/PoorvaJ-WW/okft?style=flat&label=%E2%98%85&color=444)](https://github.com/PoorvaJ-WW/okft/stargazers) | Python | OKF 规范校验器(okft lint,适合 CI)+ MCP 服务器(okft serve),pip 安装 |
| [longsizhuo/okf-frontmatter](https://github.com/longsizhuo/okf-frontmatter) | [![★](https://img.shields.io/github/stars/longsizhuo/okf-frontmatter?style=flat&label=%E2%98%85&color=444)](https://github.com/longsizhuo/okf-frontmatter/stargazers) | Python | 把仓库文档维护成 OKF 形态的 skill |
| [hermes-okf](./references/hermes-okf.md) | [![★](https://img.shields.io/github/stars/EliaszDev/hermes-okf?style=flat&label=%E2%98%85&color=444)](https://github.com/EliaszDev/hermes-okf/stargazers) | Python | 基于 OKF 的 Agent 持久记忆(PyPI) |
| [pumblus/okf-harness](https://github.com/pumblus/okf-harness) | [![★](https://img.shields.io/github/stars/pumblus/okf-harness?style=flat&label=%E2%98%85&color=444)](https://github.com/pumblus/okf-harness/stargazers) | TS | 本地优先的 agent 终端 harness |
| [scaccogatto/okf-skills](https://github.com/scaccogatto/okf-skills) | [![★](https://img.shields.io/github/stars/scaccogatto/okf-skills?style=flat&label=%E2%98%85&color=444)](https://github.com/scaccogatto/okf-skills/stargazers) | Python | Claude Code 的 OKF 技能 |
| [wiki-as-an-mcp](./references/wiki-as-an-mcp.md) | [![★](https://img.shields.io/github/stars/taikunudel/wiki-as-an-mcp?style=flat&label=%E2%98%85&color=444)](https://github.com/taikunudel/wiki-as-an-mcp/stargazers) | Python | 首个通用 Wiki MCP server |
| [superops-team/okf](./references/superops-okf.md) | [![★](https://img.shields.io/github/stars/superops-team/okf?style=flat&label=%E2%98%85&color=444)](https://github.com/superops-team/okf/stargazers) | Go | 项目级知识库 |
| [xSAVIKx/okf-skills](https://github.com/xSAVIKx/okf-skills) | [![★](https://img.shields.io/github/stars/xSAVIKx/okf-skills?style=flat&label=%E2%98%85&color=444)](https://github.com/xSAVIKx/okf-skills/stargazers) | Go | Go 实现的 OKF agentic skills |
| [okf-rag](./references/okf-rag.md) | [![★](https://img.shields.io/github/stars/killop/okf-rag?style=flat&label=%E2%98%85&color=444)](https://github.com/killop/okf-rag/stargazers) | Rust | 本地优先 OKF 检索 / RAG |
| [Sudhakaran88/okf-conformance](https://github.com/Sudhakaran88/okf-conformance) | [![★](https://img.shields.io/github/stars/Sudhakaran88/okf-conformance?style=flat&label=%E2%98%85&color=444)](https://github.com/Sudhakaran88/okf-conformance/stargazers) | JS | OKF 一致性校验器 |
| [joshuaswarren/remnic](https://github.com/joshuaswarren/remnic) | [![★](https://img.shields.io/github/stars/joshuaswarren/remnic?style=flat&label=%E2%98%85&color=444)](https://github.com/joshuaswarren/remnic/stargazers) | TS | 面向「认识用户」的 agent 记忆 / 上下文层:记忆目录即 OKF bundle,自带 `remnic okf lint`,MCP/HTTP 双接口 |
| [ZeroDot1/LLMWikiNG](https://github.com/ZeroDot1/LLMWikiNG) | [![★](https://img.shields.io/github/stars/ZeroDot1/LLMWikiNG?style=flat&label=%E2%98%85&color=444)](https://github.com/ZeroDot1/LLMWikiNG/stargazers) | Python | 本地、隐私优先的 Karpathy 式 LLM Wiki 平台(OKF Edition),由 AI 维护与扩写 |
| [jkroepke/okf-crossplane-v2](https://github.com/jkroepke/okf-crossplane-v2) | [![★](https://img.shields.io/github/stars/jkroepke/okf-crossplane-v2?style=flat&label=%E2%98%85&color=444)](https://github.com/jkroepke/okf-crossplane-v2/stargazers) | Python | Crossplane v2 的 LLM-wiki,带 CI 校验的真实领域 OKF bundle 样例 |
| [stjbrown/agent-knowledge](https://github.com/stjbrown/agent-knowledge) | [![★](https://img.shields.io/github/stars/stjbrown/agent-knowledge?style=flat&label=%E2%98%85&color=444)](https://github.com/stjbrown/agent-knowledge/stargazers) | JS | 可移植 Agent Skills,用纯 Markdown 构建并维护 OKF 项目 wiki |
| [kiso](https://github.com/oak-invest/kiso) | [![★](https://img.shields.io/github/stars/oak-invest/kiso?style=flat&label=%E2%98%85&color=444)](https://github.com/oak-invest/kiso/stargazers) | Java | OKF 发布引擎:bundle → 面向人与 agent 的静态站,附 MCP server |
| [kushal-omnius/open-knowledge-compiler](https://github.com/kushal-omnius/open-knowledge-compiler) | [![★](https://img.shields.io/github/stars/kushal-omnius/open-knowledge-compiler?style=flat&label=%E2%98%85&color=444)](https://github.com/kushal-omnius/open-knowledge-compiler/stargazers) | Python | 把 Git / PR / 测试历史确定性编译成带出处的可查询知识库(v0.2) |
| [Connorrmcd6/surface](https://github.com/Connorrmcd6/surface) | [![★](https://img.shields.io/github/stars/Connorrmcd6/surface?style=flat&label=%E2%98%85&color=444)](https://github.com/Connorrmcd6/surface/stargazers) | Rust | 「常鲜」文档:hub 是合规 OKF 概念,补上 OKF 留白的新鲜度检查,过期即构建失败 |
| [okfcli/okf](https://github.com/okfcli/okf) | [![★](https://img.shields.io/github/stars/okfcli/okf?style=flat&label=%E2%98%85&color=444)](https://github.com/okfcli/okf/stargazers) | Go | 厂商中立 Go CLI:创建 / 校验 / lint / 索引 / 搜索 / 图谱,为被 agent 驱动而设计 |
| [DavidROliverBA/aix-format](https://github.com/DavidROliverBA/aix-format) | [![★](https://img.shields.io/github/stars/DavidROliverBA/aix-format?style=flat&label=%E2%98%85&color=444)](https://github.com/DavidROliverBA/aix-format/stargazers) | Python | AIX:OKF v0.2 的严格超集——稳定标识、类型化关系、媒体身份、联邦 |
| [W4G1/okf](https://github.com/W4G1/okf) | [![★](https://img.shields.io/github/stars/W4G1/okf?style=flat&label=%E2%98%85&color=444)](https://github.com/W4G1/okf/stargazers) | Rust | 纯 Rust 零依赖实现与 CLI 工具链 |

## 这个仓库本身

是一个符合 OKF v0.2 的 bundle。每个 `.md` 带 frontmatter 和非空 `type`,根目录有 `index.md` 和 `log.md`:

```bash
python skills/okf-creator/scripts/validate_okf.py .
```

## 贡献

PR 欢迎。标准:跟 OKF 相关,能跑或能读。写 producer 前看 [CONTRIBUTING](./CONTRIBUTING.md)。

## 许可

云中江树 维护,微信公众号:云中江树。[MIT](./LICENSE)。

More