Mixes structured and unstructured data deliberately. Use frontmatter for the few fields you want to query, filter, or index on; use the markdown body for the prose, schemas, and example queries that LLMs and humans actually read
这是OKF设计中最微妙、也最正确的一个权衡:不试图把所有知识都结构化,而是明确地把「需要机器查询的字段」(frontmatter的type、tags等)和「需要人/LLM阅读的内容」(body里的描述、schema、示例查询)分开处理。过度结构化是知识管理工具最常见的死亡原因——当填写一个概念需要填20个字段时,没有人愿意维护。OKF的最小必填字段只有一个(type),其余一切都是自由文本。这个设计选择大幅降低了生产成本,同时保留了足够的结构供机器处理。