docs-status

docs-status is a skill for Claude Code from odere-pro/claude-calibration. It costs 89 tokens per session (493 once invoked), scanned A, original, MIT.

A read-only report for checking whether documentation pages still match their official sources. It lists each page’s source links, last edit date, age, and a possible staleness warning.

In plain words
What is it for?
Use it to scan docs pages with a Sources section, see when they were last edited, and identify pages that may need checking against live documentation.
Why use it?
It helps maintainers find documentation that may be outdated before reviewing or updating it. It does not change any files.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; mentions subagents; mentions Claude Code.

Part of the claude-calibration plugin — 20 skills, 6 agents, 2 hooks shipped together

Good fit Use it to scan docs pages with a Sources section, see when they were last edited, and identify pages that may need checking against live documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/odere-pro/claude-calibration/docs-status
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 odere-pro/claude-calibration --skill docs-status
Clone the repo
git clone --depth 1 https://github.com/odere-pro/claude-calibration

Made for: Claude Code.

Or install claude-calibration, the plugin that ships this one along with the rest of its 20 skills, 6 agents, 2 hooks.

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 docs-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/odere-pro/claude-calibration/docs-status.svg)](https://agentmods.dev/skills/odere-pro/claude-calibration/docs-status)
Your own site
<a href="https://agentmods.dev/skills/odere-pro/claude-calibration/docs-status"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-calibration/docs-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 493 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.00089 $0.00493
Opus 5 $0.00044 $0.00246
Sonnet 5 $0.00018 $0.00099
Haiku 4.5 $0.00009 $0.00049

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

Security

Grade A, and why

docs-status 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 7d 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.

.claude/skills/docs-status/SKILL.md · 46 lines

What it actually says

docs-status

Report which docs/ pages may have drifted from their official sources. Read-only — never edit.

Steps

  1. Enumerate the rubric pages: every docs/**/*.md that contains a ## Sources heading (grep -rl '^## Sources' docs).
  2. For each page, collect:
    • Sources — the https://code.claude.com/docs/... / https://agents.md URLs under its ## Sources block.
    • Last touchedgit log -1 --format=%ad --date=short -- <page>.
    • Age — days since that date relative to today.
  3. Flag staleness: mark a page STALE if its last-touched date is older than ~90 days, ok otherwise. (Heuristic — git age is a proxy; only /docs-update can confirm against the live docs.)

Output

A table, newest-first, plus a one-line summary:

page                              last touched   age    sources   flag
docs/features/skills.md           2026-05-13     9d     2         ok
docs/features/hooks.md            2026-02-01    110d    1         STALE
...
N pages · M flagged STALE. Run /docs-update to refresh against the live docs.

Notes

  • This skill only reads. The next step, /docs-update, fetches the live pages (via the docs-fetcher subagent) and proposes edits.
  • A page with no ## Sources block is skipped — it isn't grounded in an external doc.
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. 7d ago First seen · 46 lines · 89 tokens per session scan A 0c06e9d5f32e

Subscribe to this mod's changes

docs-status is a skill published in the GitHub repository odere-pro/claude-calibration (1 stars, last pushed 1mo ago), licensed MIT. It adds 89 tokens to every session and 493 once invoked, about $0.0004 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

researcher

Delegate a deep research or survey task to Google's Antigravity CLI (agy staffer, fast Gemini). Use when the user says /agy:researcher, "ask agy to research", "have the agy staffer survey X", or wants a second, independent deep-dive on a topic or codebase without spending the host model's quota.

keli-wen/agy-staff · 75 tokens

writing-javascript

How browser JavaScript is written in this repo — both surfaces now speak one modern dialect and this says what that means for the code you type, where ES modules are impossible and where they are merely unused, and how to pick a feature (Baseline plus a file:// gate). Covers functional idiom over imperative DOM work…

AleksandarBisevac/claude-plugins · 163 tokens

writing-python

How Python is written in this repo — free functions over classes, structured returns instead of mutated arguments, comprehensions, no module state, and the stdlib-only, annotation-free, Python 3.8 dialect the AST lints enforce. Covers modular structure and the import-layer rule, DRY without copying a helper into a…

AleksandarBisevac/claude-plugins · 161 tokens

dora-expert

DORA expert for EU financial entities. Deep knowledge of Digital Operational Resilience Act including 5 pillars, ICT risk management, incident reporting, resilience testing, third-party oversight, and information sharing for financial sector digital resilience.

GRCEngClub/claude-grc-engineering · 49 tokens

scroll-video

Build the foundation of an Apple-style scroll-driven video website — extract frames from a video, render them on canvas, and bind playback to scroll progress with a circle-wipe hero reveal.

ne11nn/cantos-plugin · 40 tokens

competitive-analysis

When the user wants to compare domains or URLs against competitors across SEO footprint, share of voice, keyword/content gap, head-to-head pages, off-page link gap (via backlink-analysis), and brand positioning. Orchestrates evidence from serp-extract, keyword-research, backlink-analysis, and topic-cluster without…

agencia-conversion/agentic-seo-skills · 70 tokens