Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add xSAVIKx/okf-skills --skill okf-graphqlgit clone --depth 1 https://github.com/xSAVIKx/okf-skillsWrote 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/xsavikx/okf-skills/okf-graphql)<a href="https://agentmods.dev/skills/xsavikx/okf-skills/okf-graphql"><img src="https://agentmods.dev/badge/skills/xsavikx/okf-skills/okf-graphql/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/xsavikx/okf-skills/okf-graphql"><img src="https://agentmods.dev/badge/skills/xsavikx/okf-skills/okf-graphql.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00111 | $0.00698 |
| Opus 5 | $0.00056 | $0.00349 |
| Sonnet 5 | $0.00022 | $0.00140 |
| Haiku 4.5 | $0.00011 | $0.00070 |
Grade A, and why
okf-graphql 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 12d 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.
What it actually says
GraphQL OKF Connector
This skill provides a Go-based CLI tool to document a GraphQL schema (SDL) as an Open Knowledge Format (OKF) bundle: one concept per user-defined type and per root operation, with fields and operations linked to the types they reference. It needs only the SDL file — no live server.
When to Use
Use this skill when you need to:
- Catalog a GraphQL API from its SDL — types under
types/, queries underqueries/, mutations undermutations/(subscriptions undersubscriptions/). - Turn the type graph into a connected, browsable view — field→type and
operation→type
referencesedges render as typed edges inokf-viz. - Round-trip enriched descriptions back to a
.okf-metadata.yamlsidecar.
Setup
go install github.com/xSAVIKx/okf-skills/skills/okf-graphql@latest
# …or: cd skills/okf-graphql && go build -o okf-graphql .
How to Use
1. Produce an OKF bundle
./okf-graphql produce --schema <schema.graphql> --out <bundle-dir>
--schema(required): path to the GraphQL SDL document.--out(required): output OKF bundle directory.
Each object/input/interface type becomes types/<Name>.md with a # Columns field
table (Name | Type | Required); enums emit a # Values list; unions emit their
members. Each root field becomes an operation concept with its arguments and return
type. Fields/operations link to the types they reference under # Relationships.
Re-running preserves enriched descriptions.
2. Ingest / sync descriptions
./okf-graphql ingest --schema <schema.graphql> --bundle <bundle-dir> [--sync]
- Verifies each concept still exists in the schema (reports drift); the SDL is never modified.
--sync: writes the bundle's descriptions to.okf-metadata.yamlnext to the SDL.
3. Inspect the schema (self-description)
./okf-graphql schema
Prints the machine-readable JSON description used by okf-mcp to expose the skill.
What ships with it
9 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.
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.
- 12d ago First seen · 69 lines · 111 tokens per session scan A 6f1868e1b0dc
okf-graphql is a skill published in the GitHub repository xSAVIKx/okf-skills (33 stars, last pushed 12d ago), licensed Apache-2.0. It adds 111 tokens to every session and 698 once invoked, about $0.0006 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
api-caller
Call any REST API dynamically. Make GET, POST, PUT, DELETE requests to any endpoint with custom headers and JSON body.
agent-ready-auth-md
Sub-skill: Implement Auth.md for agent registration discovery. Serve /auth.md with OAuth metadata at /.well-known/oauth-protected-resource and authorization server endpoints.
agent-ready-dns-aid
Sub-skill: Implement DNS-AID records so agents discover endpoints through DNS. Use SVCB/HTTPS records under agents namespace with alpn and connection parameters.
agent-ready-link-headers
Sub-skill de agent-ready-cloudflare: Implement Link Response Headers.
agent-ready-markdown-negotiation
Sub-skill de agent-ready-cloudflare: Implement Markdown Content Negotiation.
agent-ready-mcp-server-card
Sub-skill de agent-ready-cloudflare: Implement MCP Server Card.