risk-prioritiser

risk-prioritiser is a skill for Claude Code from transilienceai/communitytools. It costs 39 tokens per session (1,681 once invoked), scanned A, original, MIT.

A security-risk ranking helper that orders confirmed attack paths—chains of weaknesses an attacker could use—by technical severity, how feasible the path is, and the business importance of the affected asset.

In plain words
What is it for?
Use it to rank confirmed attack paths and individual high-severity findings using asset business tiers, external exposure, and CVSS scores.
Why use it?
It turns a large set of security findings into a remediation order, so teams can focus first on paths that pose the greatest combined risk.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the communitytools plugin — 48 skills, 5 commands, 9 agents, 1 hook shipped together

Good fit Use it to rank confirmed attack paths and individual high-severity findings using asset business tiers, external exposure, and CVSS scores.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/transilienceai/communitytools/risk-prioritiser
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add transilienceai/communitytools --skill risk-prioritiser
Clone the repo
git clone --depth 1 https://github.com/transilienceai/communitytools

Made for: Claude Code.

Or install communitytools, the plugin that ships this one along with the rest of its 48 skills, 5 commands, 9 agents, 1 hook.

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 risk-prioritiser

README.md
[![agentmods](https://agentmods.dev/badge/skills/transilienceai/communitytools/risk-prioritiser/github.svg)](https://agentmods.dev/skills/transilienceai/communitytools/risk-prioritiser)
Your own site
<a href="https://agentmods.dev/skills/transilienceai/communitytools/risk-prioritiser"><img src="https://agentmods.dev/badge/skills/transilienceai/communitytools/risk-prioritiser/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 risk-prioritiser

Your own site · 80×15
<a href="https://agentmods.dev/skills/transilienceai/communitytools/risk-prioritiser"><img src="https://agentmods.dev/badge/skills/transilienceai/communitytools/risk-prioritiser.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,681 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.00039 $0.01681
Opus 5 $0.00019 $0.00840
Sonnet 5 $0.00008 $0.00336
Haiku 4.5 $0.00004 $0.00168

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

Security

Grade A, and why

risk-prioritiser 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.

skills/risk-prioritiser/SKILL.md · 122 lines

How it starts

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

Risk Prioritiser

Consume the attack-path graph + the client-supplied business-tier map and emit a single ranked list of paths the org should remediate first. Mounted onto cloud-agent task #7.

Trigger

Cron daily after attack-path-stitcher (task #6) completes. Also event-fires when a new validated/*.json is written with nvd.score >= 9.0.

Workflow

  1. Load inputs.
    • artifacts/attack-paths.json — graph from task #6. Split into confirmed_paths (RFP-grade) and inferred_paths (topology/supply-chain).
    • business-tier-map.csv — client-supplied asset → tier. Search order: {OUTPUT_DIR}/business-tier-map.csvprojects/rfp-3.3/schemas/business-tier-map.csv.
  2. Score each confirmed_paths entry.
    • feasibility = product of every edge's feasibility along the path. For confirmed paths this is always 1.0.
    • technical_severity = max_cvss_along_path / 10.
    • business_impact = tier weight of the destination (crown_jewel = 1.0 by definition).
    • entry_exposure = 1.0 if entry node is external: true, else 0.5.
    • Final score = feasibility × technical_severity × business_impact × entry_exposure.
  3. Score each single-asset validated finding that does not sit on a confirmed path. Same formula; feasibility = 1.0, business_impact = asset's own tier weight, hop count = 1.
  4. Score each inferred_paths entry, but cap their bucket placement at theoretical regardless of numeric score. Inferred paths NEVER reach immediate / short_term / medium_term — RFP §3.3 requires "confirmed", and inferred paths are evidence-deficient by construction.
  5. Sort descending. Stable tie-break order: max CVSS desc → hop count asc → finding age desc (newer first).
  6. Bucket into roadmap tiers.
    • immediate (0-7 days): confirmed AND score ≥ 0.6
    • short_term (7-30 days): confirmed AND 0.3 ≤ score < 0.6
    • medium_term (30-90 days): confirmed AND 0.1 ≤ score < 0.3
    • monitor: confirmed AND score < 0.1
    • theoretical (track-only): any path with path_class != "confirmed". Surfaced in board reports but excluded from the remediation SLA roadmap.
  7. Write outputs to artifacts/attack-paths-ranked.json + attack-paths-ranked.md. Each row carries path_class so downstream consumers can filter.

Read the full file on GitHub · 122 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. 11d ago First seen · 122 lines · 39 tokens per session scan A 61ccb9b8aab9

Subscribe to this mod's changes

risk-prioritiser is a skill published in the GitHub repository transilienceai/communitytools (520 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 1,681 once invoked, about $0.0002 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

credential-attack

Password spray methodology for bug bounty — when to do it vs web-vuln hunting, the wordlist-gen + breach-check + osint-employees + spray pipeline, mode selection (http-form / oauth / o365 / okta), rate-limit + lockout tactics, BBP legal guardrails, success detection, and the spray → authenticated /hunt chain pattern.…

Awarexone/Agentic-Bug-Hunter · 102 tokens

report-writing

Bug bounty report writing for H1/Bugcrowd/Intigriti/Immunefi — report templates, human tone guidelines, impact-first writing, CVSS 3.1 scoring, title formula, impact statement formula, severity decision guide, downgrade counters, pre-submit checklist. Use after validating a finding and before submitting. Never use…

Awarexone/Agentic-Bug-Hunter · 82 tokens

triage-validation

Finding validation before writing any report — 7-Question Gate (all 7 questions), 4 pre-submission gates, always-rejected list, conditionally valid with chain table, CVSS 3.1 quick reference, severity decision guide, report title formula, 60-second pre-submit checklist. Use BEFORE writing any report. One wrong answer…

Awarexone/Agentic-Bug-Hunter · 87 tokens

pentest-playbook

7-phase pentest pipeline from passive recon to exploitation.

uphiago/recon-skills · 16 tokens

web2-recon

Web2 recon pipeline — subdomain enumeration (subfinder, Chaos API, assetfinder), live host discovery (dnsx, httpx), URL crawling (katana, waybackurls, gau), directory fuzzing (ffuf), JS analysis (LinkFinder, SecretFinder), continuous monitoring (new subdomain alerts, JS change detection, GitHub commit watch). Use when…

Awarexone/Agentic-Bug-Hunter · 103 tokens

security-expert

Expert-level application security, OWASP Top 10, penetration testing, and security best practices. Use when the user mentions OWASP, pentesting, appsec, vulnerability, encryption, or authentication, or when the task involves Security Principles, OWASP Top 10, Security Domains, or Broken Access Control.

personamanagmentlayer/pcl · 66 tokens