Huntable-CTI-Studio: Skill for Claude Code

.claude/skills/add-cloud-model/SKILL.md

add-cloud-model is a skill for Claude Code from dfirtnt/Huntable-CTI-Studio. It costs 114 tokens per session (1,698 once invoked), scanned A, original, MIT.

A process for registering an OpenAI or Anthropic model in Huntable CTI Studio’s workflow settings. It controls which supported models appear in the configuration dropdown.

In plain words
What is it for?
Use it to add model support, update the provider catalog and allowlist, and check how API refreshes and model filters affect the dropdown.
Why use it?
It explains why a model may disappear after the application refreshes its provider catalog and identifies the durable configuration needed to keep it available.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Codex.

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/add-cloud-model/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 add-cloud-model

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/dfirtnt/huntable-cti-studio/add-cloud-model"><img src="https://agentmods.dev/badge/skills/dfirtnt/huntable-cti-studio/add-cloud-model.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,698 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.00114 $0.01698
Opus 5 $0.00057 $0.00849
Sonnet 5 $0.00023 $0.00340
Haiku 4.5 $0.00011 $0.00170

Measured 11d ago against content hash 8da7411ddc80, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

add-cloud-model 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.

.claude/skills/add-cloud-model/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.

Add Cloud Model

This skill registers a new OpenAI or Anthropic model so it shows up in the Workflow agent configuration dropdowns.

How the model list reaches the UI

The dropdown is built from config/provider_model_catalog.json. Every time load_catalog() runs (on each page load), it applies filters before returning the list:

  • OpenAI: strips dated snapshots, non-chat models (audio/TTS/image/realtime/codex), then further narrows to an explicit project allowlist. Only models in the allowlist or matching gpt-5* appear in the dropdown.
  • Anthropic: keeps one representative per model family — bare name preferred over -latest preferred over dated snapshot.

Important: When you save an API key in the Settings page, the app fetches the live model list from the provider's API and overwrites config/provider_model_catalog.json. The same filters run during that write. So:

  • A manually-added OpenAI model that OpenAI's API doesn't return will be removed on next save.
  • The allowlist is the durable gate — models in the allowlist survive refreshes because they're also returned by the API.
  • Anthropic models behave the same way: survive if the API returns them, removed if not.

Quick decision guide

Adding an OpenAI model:

Model type Files to change
Any gpt-5* variant Catalog JSON + fallback catalog + context tokens (3 files)
o-series, gpt-4x, or anything else Same 3 files + allowlist (4 files)
Reasoning model (no temperature support) Same as above + reasoning prefixes (4-5 files)

Adding an Anthropic model:

Always: catalog JSON + fallback catalog + context tokens (3 files). The family deduplication filter runs automatically — no extra code needed.


Step 1 — Add to the live catalog

File: config/provider_model_catalog.json

Add the model ID string to the correct provider array. Keep it sorted.

{
  "openai": [
    "gpt-4.1",
    "gpt-4.1-mini",
    "new-model-id-here",
    ...
  ],
  "anthropic": [
    "claude-sonnet-4-6",
    "new-model-id-here",
    ...
  ]
}

Read the full file on GitHub · 193 lines

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. 11d ago First seen · 193 lines · 114 tokens per session scan A 8da7411ddc80

Subscribe to this mod's changes

add-cloud-model is a skill published in the GitHub repository dfirtnt/Huntable-CTI-Studio (11 stars, last pushed 3d ago), licensed MIT. It adds 114 tokens to every session and 1,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.

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

Blue Team Defense & Hardening

System hardening, detection engineering, security baseline monitoring, patch management, defense-in-depth architecture, and security posture improvement.

Masriyan/Claude-Code-CyberSecurity-Skill · 30 tokens

analyzing-ransomware-encryption-mechanisms

Analyzes encryption algorithms, key management, and file encryption routines used by ransomware families to assess decryption feasibility, identify implementation weaknesses, and support recovery efforts. Covers AES, RSA, ChaCha20, and hybrid encryption schemes. Activates for requests involving ransomware…

26zl/cybersec-toolkit · 79 tokens

analyzing-slack-space-and-file-system-artifacts

Examine file system slack space, MFT entries, USN journal, and alternate data streams to recover hidden data and reconstruct file activity on NTFS volumes.

26zl/cybersec-toolkit · 44 tokens

conducting-external-reconnaissance-with-osint

Conducts external reconnaissance using Open Source Intelligence (OSINT) techniques to map an organization's external attack surface without directly interacting with target systems. The tester gathers information from public sources including DNS records, certificate transparency logs, search engines, social media…

26zl/cybersec-toolkit · 96 tokens

conducting-mobile-app-penetration-test

Conducts penetration testing of iOS and Android mobile applications following the OWASP Mobile Application Security Testing Guide (MASTG) to identify vulnerabilities in data storage, network communication, authentication, cryptography, and platform-specific security controls. The tester performs static analysis of…

26zl/cybersec-toolkit · 108 tokens