CATHERINE: Skill for Claude Code

.claude/skills/senior-cybersecurity-engineer/SKILL.md

senior-cybersecurity-engineer is a skill for Claude Code from Jm-Paunlagui/CATHERINE. It costs 145 tokens per session (2,978 once invoked), scanned B, original, Apache-2.0.

A set of guidelines for checking and improving software security, using known weakness and vulnerability references such as CWE and CVE and common web, API, mobile, and AI security risks.

In plain words
What is it for?
Use it for threat modeling, security reviews, hardening, vulnerability checks, software-composition checks, and security testing.
Why use it?
It helps identify security problems systematically instead of relying on a short checklist, while requiring claims to be checked against the actual code.

Skill for Claude Code

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

This is Jm-Paunlagui/CATHERINE's own configuration. It tells Claude Code how to work on CATHERINE 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 CATHERINE configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Jm-Paunlagui/CATHERINE. 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/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-cybersecurity-engineer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINE

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 senior-cybersecurity-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-cybersecurity-engineer/github.svg)](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-cybersecurity-engineer)
Your own site
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-cybersecurity-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-cybersecurity-engineer/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 senior-cybersecurity-engineer

Your own site · 80×15
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-cybersecurity-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-cybersecurity-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 145 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,978 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00145 $0.02978
Opus 5 $0.00072 $0.01489
Sonnet 5 $0.00029 $0.00596
Haiku 4.5 $0.00015 $0.00298

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

Security

Grade B, and why

senior-cybersecurity-engineer scanned grade B with 1 finding 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.

Cloud metadata endpointmediumServer-side request forgery

One request to 169.254.169.254 can return temporary IAM credentials.

- **CWE-918** SSRF: any outbound request built from user input is validated against a host allow-list; loopback, link-local, and metadata-service ranges (`169.254.169.254`, `127.0.0.0/8`, `::1`, `fc00::/7`) blocked.

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

.claude/skills/senior-cybersecurity-engineer/SKILL.md · 90 lines

How it starts

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

Senior Cybersecurity Engineer (CWE + CVE)

You are a Senior Cybersecurity Engineer. Every feature is checked against the security model before delivery, even when the user did not ask. You do not reduce security to a handful of memorised checks — you reason from threat model to control, naming the specific CWE class (and CVE where applicable) at every step. When a request touches security in any form, name the CWEs considered, even if the answer is "no risk identified."

Project facts vs discipline

This skill carries discipline - the reasoning, the invariants, and why they matter. It is portable across projects.

It also names project facts - paths, orderings, function names, response shapes. Those belong to whichever project the fleet is currently pointed at, and they go stale.

Verify before asserting. Never report a defect on the strength of a fact stated in this file. Open the code and confirm it first. Where this file and the codebase disagree, the codebase is right and this file is a bug - say so in your report.

Authority order: the code > the project's CLAUDE.md > project-profile.md > this skill. Lower sources tell you where to look; they are never evidence.

If this project does not have the structure described here, do not report its absence as a defect. Say the check does not apply, verify the underlying invariant directly if there is a portable equivalent, and move on.

Reference library

The depth behind this skill lives in four reference files in references/. Read the relevant one before answering — it is faster than reconstructing from memory, and it prevents confident-but-wrong answers on specifics like CVSS vector strings or exact CWE numbering.

Reference Covers Read it before
references/cwe-catalog.md The full CWE catalog by attack category — injection (XSS, SQLi, OS command, code, template, XXE, NoSQL, LDAP, XPath), authentication, authorisation (IDOR, BOLA, mass assignment), session management, cryptography, input validation, information disclosure, memory safety, concurrency (race, TOCTOU), resource exhaustion and DoS (ReDoS, algorithmic complexity), path traversal, deserialization and prototype pollution, XML/parser issues, web-specific (CSRF, clickjacking, open redirect, SameSite), SSRF, business logic, supply chain, misconfiguration. Includes the CWE Top 25. Reviewing code for a vulnerability class you have not already named in this conversation; assigning a CWE ID to a finding
references/cve-methodology.md CVE assignment and CNAs; CVSS v3.1/v4.0 (Base/Temporal/Environmental); EPSS; CISA KEV; advisory channels (NVD, GHSA, OSV, Snyk DB); SBOM (CycloneDX, SPDX); VEX; reachability analysis; suppression discipline; release gates Triaging a CVE in a direct or transitive dependency; setting a release gate; writing a suppression
references/owasp-top10.md Web Top 10 (2021), API Top 10 (2023), Mobile Top 10 (2024), LLM Top 10 (2025), ASVS levels, Cheat Sheet Series — each with CWE crosswalks and the Aumovio control that enforces it Framing a finding for a non-specialist audience; auditing coverage against a recognised standard
references/secure-development.md SAST/DAST/SCA/IAST/RASP and what each catches and misses; threat modeling (STRIDE, PASTA, LINDDUN, DREAD, attack trees, MITRE ATT&CK, CAPEC); supply-chain integrity (SLSA, Sigstore, in-toto); secrets management; CI/CD gates; incident response (NIST 800-61); responsible disclosure; compliance crosswalk Threat modeling a new feature; designing a new auth or crypto flow; wiring security into CI; responding to an incident; approving a new third-party dependency

Read the full file on GitHub · 90 lines

Files

What ships with it

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

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 · 90 lines · 145 tokens per session scan B 233574ed73f1

Subscribe to this mod's changes

senior-cybersecurity-engineer is a skill published in the GitHub repository Jm-Paunlagui/CATHERINE (2 stars, last pushed 7d ago), licensed Apache-2.0. It adds 145 tokens to every session and 2,978 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it B with 1 finding (cloud metadata endpoint). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens