official-source-check

official-source-check is a skill for Codex from kreek/consult. It costs 27 tokens per session (472 once invoked), scanned A, original, MIT.

A checklist for checking version-sensitive software behavior against official documentation. It applies to frameworks, libraries, software development kits, cloud services, browsers, and similar tools.

In plain words
What is it for?
Use it when implementing, upgrading, or migrating code that depends on current external software behavior. It guides the agent to check versions, official documentation, release notes, and migration guides.
Why use it?
It reduces mistakes caused by relying on remembered APIs, outdated advice, or incorrect upgrade assumptions.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it when implementing, upgrading, or migrating code that depends on current external software behavior. It guides the agent to check versions, official documentation, release notes, and migration guides.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kreek/consult/official-source-check
Install

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.

Any agent
npx skills add kreek/consult --skill official-source-check
Clone the repo
git clone --depth 1 https://github.com/kreek/consult

Made for: Codex.

Wrote 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.

agentmods badge for official-source-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/kreek/consult/official-source-check.svg)](https://agentmods.dev/skills/kreek/consult/official-source-check)
Your own site
<a href="https://agentmods.dev/skills/kreek/consult/official-source-check"><img src="https://agentmods.dev/badge/skills/kreek/consult/official-source-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 472 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.00472
Opus 5 $0.00014 $0.00236
Sonnet 5 $0.00005 $0.00094
Haiku 4.5 $0.00003 $0.00047

Measured 3d ago against content hash 17aff29ba842, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

official-source-check 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 3d 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.

agents/.agents/skills/official-source-check/SKILL.md · 52 lines

What it actually says

Official Source Check

Iron Law

MODEL MEMORY IS A HINT, NOT EVIDENCE, FOR VERSION-SENSITIVE BEHAVIOR.

When to Use

  • Implementation depends on current external framework, library, runtime, browser, SDK, cloud, or platform behavior that the repo does not already prove.
  • The user asks for current, official, documented, or verified implementation.

When NOT to Use

  • Project-local logic with tests and no external API dependency.
  • Stable language syntax covered by the compiler, linter, or type checker.
  • Emergency mitigation where the user accepts unverified risk.

Rules

  1. Find the local version first: manifests, lockfiles, imports, generated clients, schemas, config, CI images. Report its absence if none exists.
  2. Check the narrow source of truth for the exact pattern: official docs, release notes, migration guide, standards spec, or provider SDK reference. Official sources beat blog posts.
  3. Surface conflicts between source guidance and local convention. Use the smallest source-compatible implementation.
  4. When source guidance alone does not prove runtime behavior, prove it with proof.
  5. In the final claim, name the source checked, or mark the claim unverified.

Tripwires

Trigger Do this instead False alarm
"I know this API" Check the local version and the source of truth. Project-local helper with tests.
"The docs are too broad" Check the narrow API, migration, or release-note page. Offline task where the user accepts unverified output.
"Existing code does it this way" Check whether the pattern is still supported before copying it. Repo policy pins an older supported pattern.
"I'll cite a blog post" Use official docs, standards, release notes, or provider references. The project owns the library being edited.

Handoffs

  • proof: runtime evidence behind source guidance.
  • documentation: capture the checked source for maintainers when asked.
Files

What ships with it

1 file 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.

Changes

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.

  1. 3d ago Changed · -10 lines 17aff29ba842
  2. 7d ago First seen · 62 lines · 27 tokens per session scan A bc589e0c9668

Subscribe to this mod's changes

official-source-check is a skill published in the GitHub repository kreek/consult (1 stars, last pushed 4d ago), licensed MIT. It adds 27 tokens to every session and 472 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

clarify

Lightweight spec clarification scan for jig projects — a six-category ambiguity audit that asks up to five prioritized questions and appends them to the spec's ## Clarifications section. Auto-triggers when you say clarify this spec, audit this spec for ambiguities, is this spec ready for review, find unknowns in this…

ramboz/jig · 153 tokens

explain

Explain jig vocabulary and artifacts in plain language. Three modes: term mode defines one lexicon term; artifact mode walks through a spec or ADR and its linked references; passage mode explains pasted jig output. Output is ephemeral (chat-only). Auto-triggers when you say explain this term, walk me through this…

ramboz/jig · 173 tokens

arch-review

Team baseline for architecture, design-doc, and RFC review — produces summary, strengths, concerns, and open questions. Auto-triggers when you say review this design, review this architecture, review this proposal, review my RFC, poke holes in this proposal, is this design sound, or critique this tech spec. Defers to…

ramboz/jig · 207 tokens

security-review

Team baseline for security review — a best-effort heuristic security pass over a diff or change-set. Auto-triggers for review this for security, any vulnerabilities here, security pass on this diff, is this code secure, check this for security issues, or security review this. Uses installed scanners when available…

ramboz/jig · 147 tokens

pr-review

Team baseline for PR and code review — produces scope, blockers, nits, and strengths. Auto-triggers when you say review this PR, check this diff, review these changes, pre-review before I share, what do you think of this PR, or review the diff on this branch. Defers to any other installed skill whose description…

ramboz/jig · 183 tokens

icon-composer-app-icon-workflow

Design, preview, validate, and integrate Apple app icons with Icon Composer. Use when a task mentions Icon Composer, .icon documents, Liquid Glass app icons, ictool preview exports, app icon design for iOS, iPadOS, macOS, or watchOS, or guided Icon Composer GUI work through Computer Use.

gaelic-ghost/socket · 73 tokens