AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Okf Skill

skill-catancs-okf-skill-okf · by catancs

Use the Open Knowledge Format (OKF) when storing, retrieving, or documenting knowledge. Produces and reads OKF bundles, portable markdown with YAML frontmatter. Use when the user asks to "document this in OKF", "create an OKF bundle", "read the knowledge base", or when working with data systems that need structured documentation.

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-catancs-okf-skill-okf

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-catancs-okf-skill-okf)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Okf Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

OKF (Open Knowledge Format) Skill

Use the Open Knowledge Format (OKF) when storing, retrieving, or documenting knowledge. OKF makes knowledge portable across agents, tools, and teams.

What to do

When documenting data systems (databases, APIs, pipelines, metrics) or building a knowledge base, produce OKF-conformant bundles. When reading existing knowledge, prefer OKF bundles.

File structure

knowledge/
├── index.md                  # Root listing of all concepts
├── datasets/
│   ├── index.md
│   └── sales.md
└── tables/
    ├── index.md
    └── orders.md

Concept format

Every .md file (except index.md) is a concept. Required and recommended frontmatter:

---
type: Table                    # REQUIRED (e.g. Table, Dataset, Metric, API, Playbook)
title: Orders                  # Recommended, display name
description: Customer orders   # Recommended, one-line summary
resource: https://...          # Optional, canonical URI
tags: [sales, orders]          # Optional, cross-cutting tags
timestamp: 2026-06-17T00:00:00Z # Optional, ISO 8601
---

# Schema
| Column     | Type   | Description                |
|------------|--------|----------------------------|
| `order_id` | STRING | Unique identifier           |

# Related
See [customers](/tables/customers.md) for the join key.

Rules

  1. type is the only required field. All else is optional.
  2. Reserved filenames: index.md (directory listing) and log.md (changelog). Never use as concept names.
  3. Cross-link with markdown: [text](/path/to/concept.md) (absolute) or [text](./relative.md).
  4. Always add description, it's used in indexes and search.
  5. Create index.md in each directory listing its contents.
  6. After writing, verify the bundle is self-consistent: links resolve, types are set, index exists.

Types (suggested)

| Type | Use for | |------|---------| | Dataset | Collection of tables or views | | Table | A database table or view | | API | REST/gRPC endpoint | | Metric | Business or technical metric | | Playbook | Operational procedure | | Pipeline | Data processing pipeline | | Reference | External docs or glossary |

Define your own types as needed. Consumers will handle unknown types gracefully.

Workflow

  1. Document (when asked to document a system, create an OKF bundle with index.md at root, organized by type.)
  2. Read (before answering questions about a system, check if an OKF bundle exists. Read index.md first, then drill into relevant concepts.)
  3. Update (when schemas or systems change, update the relevant concept files and their timestamps.)
  4. Cross-reference (link related concepts. The value of OKF is in the graph, not the individual files.)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.