ai-dial-chat: Skill for Claude Code

.claude/skills/security-monitor-triager/SKILL.md

security-monitor-triager is a skill for Claude Code from epam/ai-dial-chat. It costs 102 tokens per session (1,886 once invoked), scanned A, original, Apache-2.0.

A second review of security-monitor findings that checks whether reported advisories affect the dependency versions and code in the repository. An OSV advisory is a public record describing a known software vulnerability.

In plain words
What is it for?
Use it after a proactive security monitor reports OSV advisories or news items. It helps decide which findings are real, which are overstated, and which require a human decision.
Why use it?
It challenges false positives, exaggerated severity, weak claims that vulnerable code is reachable, and poorly classified security news. It returns a verdict such as confirmed, overstated, false positive, or needs review.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is epam/ai-dial-chat's own configuration. It tells Claude Code how to work on ai-dial-chat 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 ai-dial-chat configures →

Reuse

Borrowing it

Nothing to install: this file belongs to epam/ai-dial-chat. 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/epam/ai-dial-chat/development/.claude/skills/security-monitor-triager/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/epam/ai-dial-chat

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 security-monitor-triager

README.md
[![agentmods](https://agentmods.dev/badge/skills/epam/ai-dial-chat/security-monitor-triager/github.svg)](https://agentmods.dev/skills/epam/ai-dial-chat/security-monitor-triager)
Your own site
<a href="https://agentmods.dev/skills/epam/ai-dial-chat/security-monitor-triager"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-chat/security-monitor-triager/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 security-monitor-triager

Your own site · 80×15
<a href="https://agentmods.dev/skills/epam/ai-dial-chat/security-monitor-triager"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-chat/security-monitor-triager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,886 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.00102 $0.01886
Opus 5 $0.00051 $0.00943
Sonnet 5 $0.00020 $0.00377
Haiku 4.5 $0.00010 $0.00189

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

Security

Grade A, and why

security-monitor-triager 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 12d 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.

.claude/skills/security-monitor-triager/SKILL.md · 130 lines

How it starts

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

Proactive Security Monitor — Triager (read-only)

You are a skeptical senior AppSec engineer reviewing the proactive monitor's output the way a dev reads a Snyk/Dependabot report on Monday morning. Your job is to find false positives, overstated severity, weak reachability claims, and mis-tagged news items — not to rubber-stamp, and not to hunt for brand-new vulnerabilities. Evidence from the code always overrides the advisory text and your assumptions.

Be decisive: spend only what a verdict requires; when the evidence isn't there, return NEEDS_REVIEW rather than digging indefinitely. Write your output before the turn limit — a partial result with honest gaps beats no file.

Input

The producer's output is at upstream/proactive-security-monitor/stage-output.json. Read it. It contains:

  • payload.findings[] — OSV advisories: each has osv_id, aliases, package, version, osv_severity_label, supply_chain, affected (version ranges), references, modified.
  • payload.news[] — RELEVANT / TANGENTIAL items with rationale and optional suggested_action; payload.news_ignored[] — the audited IGNORE list.

The working tree has been overlaid with the scanned branch's source (via the agent's analysis_ref), so the code you read is the branch the SBOM came from. If the upstream file is missing, write status:"passed" naming it (platform race). If it's malformed, write one info finding describing the parse failure — don't guess.

Per-advisory workflow (each payload.findings[] item)

Do only as much as the verdict requires:

  1. Version-match. Cross-check the SBOM version against the advisory affected[].ranges (introduced ≤ ours < fixed, or last_affected ≥ ours). OSV's batch already filters this, but confirm — odd range types produce false matches.
  2. Locate usage. Grep/Glob for the package's import specifier across the monorepo (apps/*, libs/*, packages/*). Distinguish a direct dependency from a transitive one (only reachable through a direct dep). If the package is never imported in production code, that is decisive.
  3. Reachability — the most error-prone step. For the specific vulnerable API/behavior the advisory names, judge whether production code can reach it. Read the real call sites; trace the path. State operator-controlled vs attacker-controlled input: an advisory whose sink only consumes build config or constants is far less dangerous than one reachable from a request/render path. Name built-in mitigations (framework escaping, helmet, validation, React's default JSX escaping) only after verifying they actually apply.
  4. Production relevance. Dev-only / test / build-tooling dependencies (vite, test runners, types) reached only at build/test time are NOT_APPLICABLE for runtime exploitation — say so with evidence; never assume from name alone.
  5. Verdict — pick one, citing concrete file:line you actually read.

Read the full file on GitHub · 130 lines

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. 12d ago First seen · 130 lines · 102 tokens per session scan A c17f276c4ea3

Subscribe to this mod's changes

security-monitor-triager is a skill published in the GitHub repository epam/ai-dial-chat (504 stars, last pushed today), licensed Apache-2.0. It adds 102 tokens to every session and 1,886 once invoked, about $0.0005 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.