vuln-report

vuln-report is a skill for Claude Code from waybarrios/opencode-power-pack. It costs 44 tokens per session (1,560 once invoked), scanned A, original, MIT.

A skill for turning one confirmed security bug into a disclosure-ready GitHub advisory. The report includes the cause, proof that the bug works, its impact, and supporting source evidence.

In plain words
What is it for?
Writing a single vulnerability report with reproduction details, affected behavior, trust assumptions, impact, code evidence, and links to relevant files or fixes.
Why use it?
It helps present an established vulnerability clearly to maintainers or security teams. It is for reporting a known finding, not for discovering or testing whether one exists.

Skill for Claude Code

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

Part of the opencode-power-pack plugin — 54 skills shipped together

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.

agentmods
npx agentmods add skills/waybarrios/opencode-power-pack/vuln-report
Any agent
npx skills add waybarrios/opencode-power-pack --skill vuln-report
Clone the repo
git clone --depth 1 https://github.com/waybarrios/opencode-power-pack

Made for: Claude Code.

Or install opencode-power-pack, the plugin that ships this one along with the rest of its 54 skills.

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 vuln-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/waybarrios/opencode-power-pack/vuln-report.svg)](https://agentmods.dev/skills/waybarrios/opencode-power-pack/vuln-report)
Your own site
<a href="https://agentmods.dev/skills/waybarrios/opencode-power-pack/vuln-report"><img src="https://agentmods.dev/badge/skills/waybarrios/opencode-power-pack/vuln-report.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,560 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00044 $0.01560
Opus 5 $0.00022 $0.00780
Sonnet 5 $0.00009 $0.00312
Haiku 4.5 $0.00004 $0.00156

Measured 6d ago against content hash cba9f739f3eb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

vuln-report 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 6d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/vuln-report/SKILL.md · 117 lines

How it starts

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

Vulnerability Report

Overview

Draft one disclosure-ready report for one confirmed bug. Keep the report evidence-driven, concrete, and concise. Prefer the section order and phrasing rules in references/report-template.md.

Workflow

  1. Confirm the report is about one bug only.
  2. Extract the minimum facts needed to prove the issue:
    • vulnerable component or behavior
    • attacker-controlled input or missing validation
    • preconditions and trust boundary
    • exploit result
    • practical impact
    • strongest reproduction path
    • decisive source locations and any relevant fix commit
  3. Separate demonstrated facts from inference. State assumptions explicitly.
  4. Draft the report using the required section order from references/report-template.md.
  5. Always embed at least one fenced code snippet from the decisive code path, and explain what each snippet proves.
  6. Always convert repository file references and patch references into GitHub markdown links, and prefer embedding those links directly into the surrounding explanation instead of listing them separately.
  7. Add only the optional sections that materially improve accuracy or triage value.
  8. Save the final report as report.md inside a folder named with the bug's severity identifier (C1, H1, M1, etc.) followed by a lowercase hyphenated slug derived from the final report title. Use C for Critical, H for High, M for Medium, sequentially numbered if there are multiple bugs of the same severity. Example: C1-cross-site-websocket-hijacking-re-enabled-by-allow-websocket/report.md. Also, ensure the bug report title and internal references use this ID (e.g., '[C1] Cross-Site WebSocket Hijacking'). Do not write reports for Low severity findings — document them in the summary table only.
  9. Remove filler, hedging, and unproven claims before finalizing.

Required Sections

Always include these sections in this order:

  1. Summary
  2. Details
  3. Root Cause
  4. Proof of Concept (PoC)
  5. Impact

Read the full file on GitHub · 117 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. 6d ago First seen · 117 lines · 44 tokens per session scan A cba9f739f3eb

Subscribe to this mod's changes

vuln-report is a skill published in the GitHub repository waybarrios/opencode-power-pack (490 stars, last pushed 3d ago), licensed MIT. It adds 44 tokens to every session and 1,560 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

langsmith-observability

LLM observability platform for tracing, evaluation, and monitoring. Use when debugging LLM applications, evaluating model outputs against datasets, monitoring production systems, or building systematic testing pipelines for AI applications.

synthetic-sciences/openscience · 45 tokens

code-understand

Build a ranked, citation-backed focus map of a codebase — the files and symbols an architecture actually hangs on — using CodeGraph when available and a dependency-free builtin (regex AST extraction + rg cross-file references) otherwise. Use this any time you (the coding agent) need to orient in an unfamiliar or large…

Ar9av/obsidian-wiki · 175 tokens

cozempic-doctor

Run health checks on Claude Code configuration and sessions. Use when troubleshooting Claude Code issues. (cozempic — does not shadow Claude Code's built-in /doctor).

Ruya-AI/cozempic · 41 tokens

diagnose

Analyze Claude Code session bloat — shows token count, context usage %, and bloat breakdown. Use when the user asks about session size, context usage, or when you notice the context window is getting full.

Ruya-AI/cozempic · 45 tokens

ci-triage

Diagnose and fix red CI on zaxy — fetch the right logs, reproduce locally despite the known local quirks (testdoctor hang, benchmark tables), do coverage-ratchet math correctly, and apply the test-vs-source intent rule. Use when CI is red, a check fails on a PR, "make master green", or coverage ratchet fails.

syndicalt/zaxy · 79 tokens

lain

Structural code intelligence for AI coding agents. Use this skill when the user wants to understand how a codebase is organized (modules, call graphs, file dependencies), find where to start reading, trace the impact of a change, find code by meaning, or understand what a symbol does in its full context. Do NOT use…

spuentesp/lain · 90 tokens