Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/jamditis/claude-skills-journalismnpx agentmods add skills/jamditis/claude-skills-journalism/okf-wikiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jamditis/claude-skills-journalism/okf-wiki)<a href="https://agentmods.dev/skills/jamditis/claude-skills-journalism/okf-wiki"><img src="https://agentmods.dev/badge/skills/jamditis/claude-skills-journalism/okf-wiki/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jamditis/claude-skills-journalism/okf-wiki"><img src="https://agentmods.dev/badge/skills/jamditis/claude-skills-journalism/okf-wiki.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Tool Misuse · line 111 Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00035 | $0.04524 |
| Opus 5 | $0.00017 | $0.02262 |
| Sonnet 5 | $0.00007 | $0.00905 |
| Haiku 4.5 | $0.00003 | $0.00452 |
Grade A, and why
okf-wiki scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 302 lines — stays where its author put it; the contents beside it link to each section on GitHub.
okf-wiki: scaffold an Open Knowledge Format knowledge base
OKF (Open Knowledge Format) stores knowledge as small markdown files: one concept per
file, each carrying its own provenance in YAML frontmatter, with directory index.md
files for navigation and a validator that enforces the contract. It is built for
knowledge bases that both people and agents read and edit, newsroom institutional
memory, a research atlas, a team's decision log, an infrastructure map.
This skill scaffolds a conforming OKF project and validates it. The format contract is
in spec/SPEC.md (in this skill's directory), read it before changing structure.
When to use
- The user wants to start an OKF knowledge base, atlas, or wiki.
- They want docs structured as one-concept-per-file with provenance, not prose pages.
- They want to "initialize OKF" in a repo, optionally publishing into its GitHub wiki.
Start here: scope the wiki with the user
Before you scaffold anything, settle four things with the user. They shape what gets created and
how it is published, and they are awkward to retrofit once concepts exist. Ask with AskUserQuestion
rather than in prose, in two steps: the first three questions in one call, then the publish question
as a follow-up call only if the audience came back public or both (it does not apply to an
internal-only wiki, and its relevant options depend on that answer, so it cannot share the first
batch). Infer the title from the repo or project and confirm it. Skip any question the user already
answered in their request, do not re-ask what they have told you.
- Audience, who reads this wiki? This answer sets the others:
- Internal (agents and teammates): the orientation hooks earn their keep, so keep them on.
The bundle may hold infrastructure detail, so it usually lives in a private repo. The in-repo
bundle/is the source of truth. - Public (people browsing): readability and secret-scrubbing come first; the hooks matter less, since people read it and agents do not. Plan a published view (see Publish below).
- Both: the in-repo
bundle/is the source of truth with hooks on for agents, plus a published view for people. Default here when the user is unsure.
- Internal (agents and teammates): the orientation hooks earn their keep, so keep them on.
The bundle may hold infrastructure detail, so it usually lives in a private repo. The in-repo
- Title and sections, the knowledge-base title (infer it, then confirm) and the starting
sections. Offer sections as a use-case preset, not a blank prompt:
- Newsroom institutional memory:
people, orgs, sources, decisions, beats - Research atlas:
concepts, sources, methods, findings - Infrastructure or fleet map:
machines, services, networks, credentials, processes - Decision log:
decisions, context, eventsThe chosen title and list feed--titleand--sectionsbelow; the user can edit the list.
- Newsroom institutional memory:
- Populate now or later, author concepts now from existing material (a repo, docs, notes, or a URL: gather it and enter the authoring loop after scaffolding), or scaffold an empty tree the user fills in later.
- Publish target, a follow-up
AskUserQuestioncall, made only after the audience comes back public or both (skip it entirely for an internal-only wiki):- In-repo bundle only (default): the validator and relative links work directly, with no extra surface to maintain. Right for most wikis.
- GitHub wiki: an optional reading surface. Advanced and manual, see "Optional: publish into
a GitHub wiki" below, bootstrapped with
scripts/gh-wiki-bootstrap.py. - GitHub Pages: a browsable site rendered from the bundle. Not built yet, treat it as a goal and keep the in-repo bundle as the source of truth.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .claude-plugin/plugin.json 404 B
- agents/openai.yaml 136 B
- example/.claude/hooks/okf-anchor.py 3.6 KB runs code
- example/.claude/hooks/okf-orient.py 6.2 KB runs code
- example/.claude/settings.json 450 B
- example/bundle/hooks/accessibility-check.md 550 B
- example/bundle/hooks/ai-slop-detector.md 532 B
- example/bundle/hooks/ap-style-check.md 496 B
- example/bundle/hooks/archive-reminder.md 534 B
- example/bundle/hooks/bug-report-detector.md 537 B
- example/bundle/hooks/copywriting-preflight.md 587 B
- example/bundle/hooks/data-methodology-check.md 552 B
- example/bundle/hooks/deadline-tracker.md 533 B
- example/bundle/hooks/enforce-test-first.md 533 B
- example/bundle/hooks/index.md 1.1 KB
- example/bundle/hooks/legal-review-flag.md 540 B
- example/bundle/hooks/no-ai-attribution.md 526 B
- example/bundle/hooks/one-way-door-check.md 791 B
- example/bundle/hooks/pre-commit-review.md 618 B
- example/bundle/hooks/pre-publish-checklist.md 607 B
- example/bundle/hooks/source-attribution-check.md 570 B
- example/bundle/hooks/source-diversity-check.md 564 B
- example/bundle/hooks/verification-reminder.md 550 B
- example/bundle/index.md 899 B
- example/bundle/plugins/autocontext.md 685 B
- example/bundle/plugins/dev-toolkit.md 1.4 KB
- example/bundle/plugins/index.md 1.0 KB
- example/bundle/plugins/journalism-core.md 1.5 KB
- example/bundle/plugins/okf-wiki.md 643 B
- example/bundle/plugins/pdf-design.md 518 B
- example/bundle/plugins/pdf-playground.md 606 B
- example/bundle/plugins/project-templates-toolkit.md 700 B
- example/bundle/plugins/research-toolkit.md 868 B
- example/bundle/plugins/security-toolkit.md 763 B
- example/bundle/plugins/superjawn.md 1.3 KB
- example/bundle/plugins/video-toolkit.md 750 B
- example/bundle/plugins/visual-explainer.md 606 B
- example/bundle/skills/academic-writing.md 1.0 KB
- example/bundle/skills/accessibility-compliance.md 899 B
- example/bundle/skills/ai-writing-detox.md 724 B
- example/bundle/skills/api-hardening.md 781 B
- example/bundle/skills/brainstorming.md 688 B
- example/bundle/skills/brazil-records-requests.md 649 B
- example/bundle/skills/claude-md-updater.md 951 B
- example/bundle/skills/content-access.md 767 B
- example/bundle/skills/context-engineering-fundamentals.md 698 B
- example/bundle/skills/crisis-communications.md 897 B
- example/bundle/skills/data-journalism.md 765 B
- example/bundle/skills/digital-archive.md 817 B
- example/bundle/skills/director.md 675 B
- example/bundle/skills/dispatching-parallel-agents.md 629 B
- example/bundle/skills/document-design.md 909 B
- example/bundle/skills/editorial-workflow.md 776 B
- example/bundle/skills/electron-dev.md 748 B
- example/bundle/skills/executing-plans.md 577 B
- example/bundle/skills/fact-check-workflow.md 760 B
- example/bundle/skills/finishing-a-development-branch.md 786 B
- example/bundle/skills/foia-requests.md 758 B
- example/bundle/skills/free-apis-catalog.md 797 B
- example/bundle/skills/index.md 3.4 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 302 lines · 35 tokens per session scan A 3442acf0caeb
okf-wiki is a skill published in the GitHub repository jamditis/claude-skills-journalism (391 stars, last pushed 3d ago), licensed MIT. It adds 35 tokens to every session and 4,524 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
pdf-table-extractor-brief
Produces a structured extraction plan and clean spreadsheet template for pulling tabular data out of a PDF document — identifying the table structure, defining column headers, flagging extraction pitfalls, and providing a ready-to-use template that ensures the data lands in a consistent, analysable format.
data-table-formatter
Formats raw or messy data into a clean, publication-ready table with appropriate headers, sorted rows, consistent number formatting, and a source note — ready to drop into an article, report, or web page.
food-ppt
Turn a food & nutrition review report, evidence brief, or manuscript into a fully EDITABLE PowerPoint (.pptx) that opens in PowerPoint / Keynote / Google Slides with every title, bullet, table, and figure as a native editable object — nothing flattened to an image. Converts the outputs of food-research…
aer-consistency
Use when auditing a finished or near-finished AER, AER:Insights, or AEJ manuscript for internal consistency: headline numbers across abstract, introduction, results, and tables; sample sizes; log-point and percentage-point conversions; cross-references; and in-text-citation/bibliography matching. Apply after the body…
agri-ppt
Turn an agricultural-science review report, evidence brief, or manuscript into a fully EDITABLE PowerPoint (.pptx) — every title, bullet, table, and figure a native editable object, nothing flattened to an image. Same machinery as food-ppt, but for agricultural work: converts the outputs of agri-research…
tikz-figure-review
Review and fix alignment, label collision, clipping, legend-over-data, overlap, and layout issues in TikZ and pgfplots figures inside LaTeX documents. Use when the user wants to review figures in a paper, tutorial, lecture notes, or thesis before submission; when a reviewer flags figure problems; when a rendered…