Install
$ agentstack add skill-catancs-okf-skill-okf ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
typeis the only required field. All else is optional.- Reserved filenames:
index.md(directory listing) andlog.md(changelog). Never use as concept names. - Cross-link with markdown:
[text](/path/to/concept.md)(absolute) or[text](./relative.md). - Always add
description, it's used in indexes and search. - Create
index.mdin each directory listing its contents. - 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
- Document (when asked to document a system, create an OKF bundle with
index.mdat root, organized by type.) - Read (before answering questions about a system, check if an OKF bundle exists. Read
index.mdfirst, then drill into relevant concepts.) - Update (when schemas or systems change, update the relevant concept files and their timestamps.)
- 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.
- Author: catancs
- Source: catancs/okf-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.