Huntable-CTI-Studio: Skill for Claude Code

.claude/skills/refresh-model-context-windows/SKILL.md

refresh-model-context-windows is a skill for Claude Code from dfirtnt/Huntable-CTI-Studio. It costs 159 tokens per session (2,063 once invoked), scanned A, original, MIT.

A review process for the context-window information stored for Anthropic and OpenAI models. A context window is the amount of text a model can handle in one request.

In plain words
What is it for?
Use it to check developer documentation, refresh the model catalog, and prepare one proposed set of changes for approval.
Why use it?
It finds outdated model limits, deprecated entries, and differences between published specifications and what the application can actually use.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is dfirtnt/Huntable-CTI-Studio's own configuration. It tells Claude Code how to work on Huntable-CTI-Studio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Huntable-CTI-Studio configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dfirtnt/Huntable-CTI-Studio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dfirtnt/Huntable-CTI-Studio/main/.claude/skills/refresh-model-context-windows/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dfirtnt/Huntable-CTI-Studio

Made for: Claude Code.

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 refresh-model-context-windows

README.md
[![agentmods](https://agentmods.dev/badge/skills/dfirtnt/huntable-cti-studio/refresh-model-context-windows/github.svg)](https://agentmods.dev/skills/dfirtnt/huntable-cti-studio/refresh-model-context-windows)
Your own site
<a href="https://agentmods.dev/skills/dfirtnt/huntable-cti-studio/refresh-model-context-windows"><img src="https://agentmods.dev/badge/skills/dfirtnt/huntable-cti-studio/refresh-model-context-windows/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.

agentmods 80×15 button for refresh-model-context-windows

Your own site · 80×15
<a href="https://agentmods.dev/skills/dfirtnt/huntable-cti-studio/refresh-model-context-windows"><img src="https://agentmods.dev/badge/skills/dfirtnt/huntable-cti-studio/refresh-model-context-windows.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 159 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,063 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00159 $0.02063
Opus 5 $0.00079 $0.01032
Sonnet 5 $0.00032 $0.00413
Haiku 4.5 $0.00016 $0.00206

Measured 12d ago against content hash 53bebe9694aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

refresh-model-context-windows 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.

.claude/skills/refresh-model-context-windows/SKILL.md · 193 lines

How it starts

The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Refresh Model Context Windows

This skill audits MODEL_CONTEXT_TOKENS and the persisted provider_model_catalog.json against authoritative provider developer docs, surfaces drift, and proposes a single diff for the user to approve.

Why this exists

Three failure modes keep recurring:

  1. Marketing pages lag developer docs. anthropic.com/claude/sonnet and openai.com/index/* still describe model state from prior releases. A model that genuinely shipped at 1M context six months ago may still be described as "1M in beta" on a marketing page that nobody updated. Always use developer docs.
  2. Spec ≠ effective. The docs may say a model has a 1M context window, but if the app doesn't send the required beta header, the actual window the app gets is smaller. The catalog needs to reflect what the app can actually reach.
  3. Hand-edited entries rot. Catalog entries written for one model generation linger after deprecation (e.g., claude-3.7-haiku-* that never existed; deprecated snapshots scheduled for retirement next month).

The audit must address all three.

Authoritative sources

See references/sources.md for the full URL list and what NOT to cite.

Hard rules:

  • Anthropic: use platform.claude.com/docs/en/... only. Never cite anthropic.com/claude/* marketing pages, including the one a search engine returns on top — those lag the developer docs by months.
  • OpenAI: use developers.openai.com/api/docs/models/<id> per-model pages. Never cite openai.com/index/* announcement posts. WebFetch on platform.openai.com/docs/models returns 403; use the per-model URLs.
  • Cross-check the docs against a second page when the answer is load-bearing. For Anthropic 1M-context claims specifically, confirm with the context-windows page, which enumerates exactly which models have 1M.

Workflow

Step 1 — Establish app constraints first

Before checking any provider docs, determine what the app can actually reach. This shapes how to interpret the spec sheets.

Read the full file on GitHub · 193 lines

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. 12d ago First seen · 193 lines · 159 tokens per session scan A 53bebe9694aa

Subscribe to this mod's changes

refresh-model-context-windows is a skill published in the GitHub repository dfirtnt/Huntable-CTI-Studio (11 stars, last pushed 4d ago), licensed MIT. It adds 159 tokens to every session and 2,063 once invoked, about $0.0008 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.

Related

Other skills, from other repositories

configuring-windows-event-logging-for-detection

Configures Windows Event Logging with advanced audit policies to generate high-fidelity security events for threat detection and forensic investigation. Use when enabling audit policies for logon events, process creation, privilege use, and object access to feed SIEM detection rules. Activates for requests involving…

26zl/cybersec-toolkit · 81 tokens

knowledge-management

../../../governance/knowledge-management/SKILL.md.

jaskaranhundal/usap-skills · 0 tokens

maintaining-engagement-state

Keep the durable record that outlives a session — credential provenance, access inventory, artifacts left on target for cleanup, findings with evidence, and a dead-end log — so work spanning days or analysts does not restart or contradict itself. Use when an engagement or investigation runs longer than one sitting…

EvilFreelancer/secs · 100 tokens

analyzing-memory-images

Analyze volatile memory images (RAM dumps) using Volatility 3 — process enumeration, injected code detection, credential extraction, network artifacts, rootkit analysis, and timeline construction from memory-resident data. Use when examining a memory capture from a compromised host, hunting for injected code or…

EvilFreelancer/secs · 81 tokens

analyzing-memory-forensics-with-lime-and-volatility

Performs Linux memory acquisition using LiME (Linux Memory Extractor) kernel module and analysis with Volatility 3 framework. Extracts process lists, network connections, bash history, loaded kernel modules, and injected code from Linux memory images. Use when performing incident response on compromised Linux systems.

mukul975/Anthropic-Cybersecurity-Skills · 71 tokens

aatmf-t04-memory-manipulation

AATMF T4 — Multi-Turn & Memory Manipulation. Persistent memory injection, conversation-state poisoning, cross-session contamination, ghost-context leak.

PurpleAILAB/Decepticon · 39 tokens