一键导入
okf
Guide for writing Open Knowledge Format (OKF) v0.1 documents. Use this skill when: 'write okf' 'okf document' 'knowledge bundle' 'okf spec' 'create concept'
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for writing Open Knowledge Format (OKF) v0.1 documents. Use this skill when: 'write okf' 'okf document' 'knowledge bundle' 'okf spec' 'create concept'
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Browser automation, debugging, and performance analysis using Puppeteer CLI scripts. Use for automating browsers, taking screenshots, analyzing performance, monitoring network traffic, web scraping, form automation, and JavaScript debugging.
Create or update Jira issues for EN (Engineering) or AW (Apheris Web) boards interactively. Use this skill when: create issue, update issue, new EN ticket, new AW ticket, jira issue, engineering ticket, create task, fix jira formatting
Control Home Assistant devices, lights, switches, and media. Look up room/device states. Use when the user asks to turn on/off lights, check sensors, control media players, or interact with any smart home device. Also covers the WLED Schreibtisch strip (palettes, presets, PIN unlock).
Guide for using and migrating to the semantic color system. Use this skill when migrating components from hardcoded colors, creating new styled components, reviewing color consistency, or updating theme-related code.
Search, read, and write Confluence pages as Markdown. Use this skill when: confluence, wiki page, find a doc, search confluence, read confluence page, publish to confluence, update wiki, confluence URL, atlassian wiki
Search and query up-to-date documentation for any programming library via Context7 API. Use when you need current docs, code examples, or API references for libraries and frameworks. Keywords c7, docs, how to use
| name | okf |
| description | Guide for writing Open Knowledge Format (OKF) v0.1 documents. Use this skill when: 'write okf' 'okf document' 'knowledge bundle' 'okf spec' 'create concept' |
This skill guides the creation, modification, and validation of individual Open Knowledge Format (OKF) v0.1 concept documents.
index.md, log.md), or bundle management:
Each OKF concept is a UTF-8 .md file consisting of:
--- on its own line at the start and end).type (REQUIRED): A short string describing the category of the concept (e.g., BigQuery Table, API Endpoint, Metric, Playbook, Reference).title (Recommended): Human-readable display name.description (Recommended): A single-sentence summary.resource (Recommended): Canonical URI identifying the underlying asset (if applicable).tags (Recommended): YAML array of cross-cutting categorization strings.timestamp (Recommended): ISO 8601 datetime of the last meaningful change.Producers should favor structural markdown (headings, lists, tables, fenced code blocks). Conventional headings can include, but are not limited to:
# Schema — Column/field definitions.# Examples — Code/usage examples.# Citations — External source material links.All links between concepts must use standard Markdown link syntax [Label](path). Two path forms are supported:
/ relative to the bundle root, e.g., [Customers](/tables/customers.md). This remains stable if the current document is moved.[Neighbor](./other.md) or [Parent](../parent.md).An individual concept document is conformant if:
type field.Execute the following steps in order, top to bottom:
tables/orders.md).type and recommended fields (title, description, etc.).# Schema, # Examples).[customers](/tables/customers.md)).---
type: BigQuery Table
title: Users Table
description: Store details for all registered users.
resource: https://console.cloud.google.com/bigquery?p=acme&d=core&t=users
tags: [core, users]
timestamp: 2026-06-25T12:00:00Z
---
# Schema
| Column | Type | Description |
|-----------|--------|-------------|
| `user_id` | STRING | Unique user identifier. |
| `email` | STRING | User's primary email address. |
# Examples
...
# Citations
...