Skip to content
OpenAI security-threat-model

OpenAI security-threat-modelSkill

Released
1 views
Repository

Summary

OpenAI's skill for repository-grounded threat modelling: derive trust boundaries, assets and attacker capabilities from the actual code, rank abuse paths by likelihood and impact, and write a reviewable Markdown threat model.

Features

  • Anchors every architectural claim to evidence in the repository instead of a generic checklist
  • Enumerates trust boundaries with protocol, auth, encryption, validation and rate-limiting noted per edge
  • States attacker non-capabilities explicitly so severity does not inflate
  • Pauses for your confirmation of exposure, deployment and data-sensitivity assumptions before finalising
  • Separates existing mitigations (with evidence) from recommended ones
  • Writes a reviewable <repo-name>-threat-model.md following a fixed output contract

Install This Skill

Add this skill to your favorite AI agent in a few steps.

Any AI agent

This skill is plain instructions — it works with any assistant that accepts custom instructions or system prompts.

  1. Copy the skill content with the button below.
  2. Paste it into your agent's instruction file or system prompt (for example AGENTS.md, .cursorrules, or a custom instructions field).
  3. Ask the agent to apply the skill whenever the task matches.

Skill Content

Markdown Content

Copy this content and use it with your preferred AI agent

---
name: "security-threat-model"
description: "Repository-grounded threat modeling that enumerates trust boundaries, assets, attacker capabilities, abuse paths, and mitigations, and writes a concise Markdown threat model. Trigger only when the user explicitly asks to threat model a codebase or path, enumerate threats/abuse paths, or perform AppSec threat modeling. Do not trigger for general architecture summaries, code review, or non-security design work."
---

# Threat Model Source Code Repo

Deliver an actionable AppSec-grade threat model that is specific to the repository or a project path, not a generic checklist. Anchor every architectural claim to evidence in the repo and keep assumptions explicit. Prioritizing realistic attacker goals and concrete impacts over generic checklists.

## Quick start

1) Collect (or infer) inputs:
- Repo root path and any in-scope paths.
- Intended usage, deployment model, internet exposure, and auth expectations (if known).
- Any existing repository summary or architecture spec.
- Use prompts in `references/prompt-template.md` to generate a repository summary.
- Follow the required output contract in `references/prompt-template.md`. Use it verbatim when possible.

## Workflow

### 1) Scope and extract the system model
- Identify primary components, data stores, and external integrations from the repo summary.
- Identify how the system runs (server, CLI, library, worker) and its entrypoints.
- Separate runtime behavior from CI/build/dev tooling and from tests/examples.
- Map the in-scope locations to those components and exclude out-of-scope items explicitly.
- Do not claim components, flows, or controls without evidence.

### 2) Derive boundaries, assets, and entry points
- Enumerate trust boundaries as concrete edges between components, noting protocol, auth, encryption, validation, and rate limiting.
- List assets that drive risk (data, credentials, models, config, compute resources, audit logs).
- Identify entry points (endpoints, upload surfaces, parsers/decoders, job triggers, admin tooling, logging/error sinks).

### 3) Calibrate assets and attacker capabilities
- List the assets that drive risk (credentials, PII, integrity-critical state, availability-critical components, build artifacts).
- Describe realistic attacker capabilities based on exposure and intended usage.
- Explicitly note non-capabilities to avoid inflated severity.


### 4) Enumerate threats as abuse paths
- Prefer attacker goals that map to assets and boundaries (exfiltration, privilege escalation, integrity compromise, denial of service).
- Classify each threat and tie it to impacted assets.
- Keep the number of threats small but high quality.

### 5) Prioritize with explicit likelihood and impact reasoning
- Use qualitative likelihood and impact (low/medium/high) with short justifications.
- Set overall priority (critical/high/medium/low) using likelihood x impact, adjusted for existing controls.
- State which assumptions most influence the ranking.

### 6) Validate service context and assumptions with the user
- Summarize key assumptions that materially affect threat ranking or scope, then ask the user to confirm or correct them.
- Ask 1–3 targeted questions to resolve missing context (service owner and environment, scale/users, deployment model, authn/authz, internet exposure, data sensitivity, multi-tenancy).
- Pause and wait for user feedback before producing the final report.
- If the user declines or can’t answer, state which assumptions remain and how they influence priority.

### 7) Recommend mitigations and focus paths
- Distinguish existing mitigations (with evidence) from recommended mitigations.
- Tie mitigations to concrete locations (component, boundary, or entry point) and control types (authZ checks, input validation, schema enforcement, sandboxing, rate limits, secrets isolation, audit logging).
- Prefer specific implementation hints over generic advice (e.g., "enforce schema at gateway for upload payloads" vs "validate inputs").
- Base recommendations on validated user context; if assumptions remain unresolved, mark recommendations as conditional.

### 8) Run a quality check before finalizing
- Confirm all discovered entrypoints are covered.
- Confirm each trust boundary is represented in threats.
- Confirm runtime vs CI/dev separation.
- Confirm user clarifications (or explicit non-responses) are reflected.
- Confirm assumptions and open questions are explicit.
- Confirm that the format of the report matches closely the required output format defined in prompt template: `references/prompt-template.md`
- Write the final Markdown to a file named `<repo-or-dir-name>-threat-model.md` (use the basename of the repo root, or the in-scope directory if you were asked to model a subpath).


## Risk prioritization guidance (illustrative, not exhaustive)
- High: pre-auth RCE, auth bypass, cross-tenant access, sensitive data exfiltration, key or token theft, model or config integrity compromise, sandbox escape.
- Medium: targeted DoS of critical components, partial data exposure, rate-limit bypass with measurable impact, log/metrics poisoning that affects detection.
- Low: low-sensitivity info leaks, noisy DoS with easy mitigation, issues requiring unlikely preconditions.

## References

- Output contract and full prompt template: `references/prompt-template.md`
- Optional controls/asset list: `references/security-controls-and-assets.md`

Only load the reference files you need. Keep the final result concise, grounded, and reviewable.

Usage Instructions

Learn how to use this skill with different AI agents.

Generic Instructions
npx skills add https://github.com/openai/skills --skill security-threat-model

Triggers only on an explicit threat-modelling request. Point it at a repository root or an in-scope subpath.

Example Usage

Threat model the services/ingest directory of this repo — enumerate the trust boundaries and abuse paths, rank them, and write the report to a file.

Description

Most "AI threat model" output is a checklist with your repository's name pasted on top: OWASP categories, generic mitigations, nothing an engineer can act on. security-threat-model is OpenAI's curated skill for producing the other kind — a model whose every architectural claim is anchored to evidence in the repository, and whose priorities come from stated assumptions rather than vibes.

The method it enforces
  1. Scope and extract the system model — components, data stores, integrations and entrypoints, with runtime behaviour separated from CI/build tooling and from tests and examples. Nothing is claimed without evidence.
  2. Derive boundaries, assets and entry points — trust boundaries as concrete edges, each annotated with protocol, auth, encryption, validation and rate limiting.
  3. Calibrate attacker capabilities — including an explicit list of non-capabilities, which is what stops every finding drifting to critical.
  4. Enumerate threats as abuse paths tied to assets and boundaries, deliberately few and high-quality rather than exhaustive.
  5. Prioritise with qualitative likelihood × impact and short justifications, adjusted for controls that already exist.
  6. Stop and ask. The skill pauses to put its load-bearing assumptions to you — owner and environment, scale, deployment model, authn/authz, internet exposure, data sensitivity, multi-tenancy — and waits for an answer before producing the final report. If you decline, it states which assumptions remain and how they moved the ranking.
  7. Recommend mitigations, separating what already exists (with evidence) from what it proposes, each tied to a concrete component or boundary and a control type.
  8. Quality-check coverage of entrypoints and boundaries before writing <repo-name>-threat-model.md.
Why the pause matters

Step 6 is the design decision worth copying. A threat model's ranking is mostly a function of exposure and data sensitivity, and an agent that guesses at those produces a document that reads authoritative and ranks wrong. Making the assumptions explicit — and blocking on them — is what turns the output into something a security reviewer can argue with.

Scope

It triggers only on an explicit request to threat model a codebase or enumerate abuse paths, not on general architecture questions or ordinary code review. Bundled references carry the output contract (references/prompt-template.md) and an optional controls-and-assets list.

From OpenAI's curated public skills collection, shipped alongside security-best-practices and security-ownership-map.

Related Skills

CodeQL, Semgrep and SARIF static-analysis toolkit from Trail of Bits: taint tracking, fast pattern scans and merged, deduplicated security findings for coding agents.

3 views
New

Microsoft's official Playwright skill — drives a real browser from the command line using accessibility snapshots and element refs, and plans, generates and heals Playwright tests.

7 views 1 copies

Skill: Google Maps Platform

by Google Maps Platform

New

Google's official agent skill for writing production Maps Platform code — grounded in freshly fetched docs, with a demo key path that needs no billing account.

8 views
New

Railway's official agent skill: create projects, provision databases and buckets, deploy, manage variables and domains, and read build failures back — from the CLI, API or MCP server.

8 views
Browse all skills →