Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
anthropics avatar

Threat Model

  • 3 installs
  • 6.9k repo stars
  • Updated August 4, 2026
  • anthropics/defending-code-reference-harness

threat-model is a Claude Code skill that builds a threat model for a target codebase via interview, code-plus-vulnerability bootstrap, or a chained mode, writing THREAT_MODEL.md.

About

This skill builds a threat model for a target codebase, answering what could go wrong, who would do it, and what to do about it. It offers interview mode (walks an owner through a four-question framework), bootstrap mode (derives the model from code plus past vulnerabilities when no owner is available), and a chained mode. It performs static analysis only and writes THREAT_MODEL.md in a shared schema that downstream scan and triage steps consume.

  • Builds a threat model for a target codebase in interview, bootstrap, or chained mode
  • Static analysis only; reads source, git history, and supplied vuln reports
  • Writes THREAT_MODEL.md in a shared schema for downstream scan and triage

Threat Model by the numbers

  • 3 all-time installs (skills.sh)
  • Ranked #1,752 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

threat-model capabilities & compatibility

Capabilities
security audit · vuln scan
Works with
github
From the docs

What threat-model says it does

A threat model answers **"what could go wrong with this system, who would do it, and what should we do about it?"** independently of whether any specific bug has been found yet.
SKILL.md
This skill performs **static analysis only**. It reads source, git history, and any vulnerability reports the user supplies, and writes a single output file (`<target-dir>/THREAT_MODEL.md`).
SKILL.md
A good threat model tells the pipeline where to look and tells triage which findings matter.
SKILL.md
npx skills add https://github.com/anthropics/defending-code-reference-harness --skill threat-model

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3
repo stars6.9k
Last updatedAugust 4, 2026
Repositoryanthropics/defending-code-reference-harness

What it does

Build a THREAT_MODEL.md for a codebase via interview or code-plus-CVE bootstrap to steer downstream vuln scanning and triage.

Who is it for?

Mapping the attack surface and threats of a codebase to steer where the pipeline looks and which findings matter.

Skip if: Validating a threat by running an exploit; it does static analysis only and points to the vuln-pipeline for execution.

When should I use this skill?

Asked to 'threat model', 'build a threat model', 'map the attack surface', or 'what should we be worried about in this codebase'.

What you get

  • THREAT_MODEL.md in the shared schema

By the numbers

  • 3 modes (interview, bootstrap, bootstrap-then-interview)
  • four-question interview framework
  • STRIDE gap-fill in bootstrap mode

Files

SKILL.mdMarkdownGitHub ↗

threat-model

A threat model answers "what could go wrong with this system, who would do it, and what should we do about it?" independently of whether any specific bug has been found yet. It is the map; vulnerability discovery is the metal detector. A good threat model tells the pipeline where to look and tells triage which findings matter.

Litmus test: If patching one line of code makes an entry disappear, it was a vulnerability, not a threat. A threat ("attacker achieves RCE via untrusted media parsing") still stands after every known bug is fixed; a vulnerability ("dr_wav.h:412 doesn't bounds-check chunk_size") does not. This skill produces threats. Vulnerabilities appear only as evidence that raises a threat's likelihood score.

Invocation: /threat-model [bootstrap-then-interview|bootstrap|interview] <target-dir> [flags]

---

Step 0 — Safety preamble (always runs first)

This skill performs static analysis only. It reads source, git history, and any vulnerability reports the user supplies, and writes a single output file (<target-dir>/THREAT_MODEL.md). It does not build, execute, fuzz, or modify the target, and does not make network requests against the target's infrastructure.

Before proceeding, confirm and state in your first response:

1. The target directory exists and is a local checkout you can read. 2. You will not execute any code from the target directory. 3. If --vulns points at a URL or you are asked to "fetch CVEs", you will query only public advisory databases (NVD, GitHub Security Advisories, the project's own issue tracker) and never the target's live deployment.

If the user asks you to validate a threat by running an exploit, decline and point them at the vuln-pipeline (README Step 2) instead.

---

Step 1 — Route to a mode

Parse $ARGUMENTS:

First tokenRoute to
interviewRead interview.md in this directory and follow it.
bootstrapRead bootstrap.md in this directory and follow it.
bootstrap-then-interviewBootstrap first, then interview seeded from the draft. See below.
anything else, or emptyAsk the user: "Is someone who owns or built this system available to answer questions in this session?" Yes and the codebase is checked out → recommend bootstrap-then-interview. Yes but no codebase → interview.md. No → bootstrap.md.

All modes write the same artifact (THREAT_MODEL.md, schema in schema.md) so downstream consumers (pipeline recon/judge, verifier agents) do not need to know which mode produced it.

interviewbootstrap
NeedsAn application owner present in the sessionA local checkout; optionally past vulns
MethodFour-question framework: conversational walk through what are we working on → what can go wrong → what are we going to do about it → did we do a good jobFive stages: parallel research swarm → synthesize sections 1-3 + vuln table → generalize vulns into threat classes → STRIDE gap-fill → emit
Best forNew systems, design reviews, systems where the risk lives in business logic the code doesn't showInherited systems, third-party code, OSS dependencies, anything with a CVE history
Provenance taginterviewbootstrap

Context durability. Interview mode is multi-turn; tool results from early reads may be evicted before you need them. To stay resilient:

  • Do not read interview.md or bootstrap.md in full up front. Read the

mode file (or the relevant section of it) at the point you need it, one question or stage at a time.

  • If a re-read via the Read tool is refused as "file unchanged", the prior

result was evicted; reload with cat <path> via Bash instead.

Interview backbone (so you can proceed even if interview.md is unavailable mid-session):

QQuestionFills schema sections
Q1What are we working on?section 1 context, section 2 assets, section 3 entry points
Q2What can go wrong?section 4 threat rows (id, threat, actor, surface, asset)
Q3What are we going to do about it?section 4 impact/likelihood/status/controls; section 5 deprioritized; section 8 recommended mitigations
Q4Did we do a good job?validate ranking, coverage check, section 6 open questions

bootstrap-then-interview mode

When the owner is available and the codebase is checked out, this is the recommended path: the owner's time goes to refining a code-grounded draft instead of describing the system from scratch.

1. Tell the owner: "I'll read the code first and come back with a draft (about 5-10 min), then we'll walk it together. Want that, or would you rather start cold?" Only proceed if they opt in; otherwise fall back to interview.md. 2. Read bootstrap.md and follow it end-to-end. Write <target-dir>/THREAT_MODEL.md. 3. Immediately continue into interview mode: read interview.md and follow it with --seed <target-dir>/THREAT_MODEL.md in effect. The section 6 open questions from bootstrap become your Q1-Q4 prompts; the owner confirms, corrects, and adds rather than starting from nothing. 4. Overwrite <target-dir>/THREAT_MODEL.md with the refined model. Set provenance mode: bootstrap-then-interview.

The same flow is available manually: run bootstrap first, then interview --seed <THREAT_MODEL.md> in a later session.

---

Step 2 — Shared output contract

All modes MUST emit <target-dir>/THREAT_MODEL.md conforming to schema.md in this directory. Read `schema.md` immediately before you write the file, not at routing time; in interview mode the gap between routing and emit can be many turns, and an early read will be evicted before it's used.

After writing the file, print to the user:

1. The path to THREAT_MODEL.md. 2. The top 5 threats by likelihood × impact (id, one-line description, L×I). 3. For bootstrap: any open questions the code could not answer (these seed a later interview pass). 4. For interview: any owner statements that could not be verified in code (these seed follow-up code review).

---

References

  • docs/security.md and

docs/prompting.md for the engagement-context and authorization framing this skill inherits.

Related skills

FAQ

What are the modes?

Interview walks an owner through a four-question framework, bootstrap derives the model from code plus past vulnerabilities, and bootstrap-then-interview chains the two.

Does it run code?

No. It performs static analysis only, reading source, git history, and supplied vulnerability reports, and never builds, executes, or fuzzes the target.

Securityauditappsec

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.