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.
curl -O https://raw.githubusercontent.com/epam/ai-dial-chat/development/.claude/skills/dep-scan/SKILL.mdgit clone --depth 1 https://github.com/epam/ai-dial-chatWrote 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.
[](https://agentmods.dev/skills/epam/ai-dial-chat/dep-scan)<a href="https://agentmods.dev/skills/epam/ai-dial-chat/dep-scan"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-chat/dep-scan/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.
<a href="https://agentmods.dev/skills/epam/ai-dial-chat/dep-scan"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-chat/dep-scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00054 | $0.01325 |
| Opus 5 | $0.00027 | $0.00662 |
| Sonnet 5 | $0.00011 | $0.00265 |
| Haiku 4.5 | $0.00005 | $0.00133 |
Grade A, and why
dep-scan 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dependency Scan (Trivy)
Overview
Filesystem scan for known CVEs. Trivy autodetects lockfiles
(package-lock.json, pnpm-lock.yaml, etc.) and produces a JSON
report; this skill parses that report and emits findings in the SDLC
reviewer shape so downstream agents (e.g., /dep-triage) and human
reviewers can consume them uniformly.
This is the scan step only — no triage, no false-positive analysis. That happens downstream.
When to use
- PR-time dependency check (chained before
/dep-triage). - Scheduled dependency scans (nightly, weekly).
- Any flow needing machine-readable vulnerability output that another agent or process will consume.
Required tools
Bash(trivy:*)— to invoke the CLIWrite— to producestage-output.json(auto-granted by the platform)Read,Glob— to inspect lockfiles or scan output if needed
Process
1. Run Trivy
Filesystem scan from repo root, JSON output, medium severity and above.
Use Trivy's --output flag, not shell redirection (>) — Claude
Code's Bash tool rejects shell-redirection operators and would deny the
command:
trivy fs --format json --severity HIGH,CRITICAL,MEDIUM --quiet --output /tmp/trivy.json .
Same effect: writes report to /tmp/trivy.json. No >, no |, no
shell-variable expansion — exactly what Bash(trivy:*) allows.
Notes:
--quietsuppresses interactive UI noise.- If
/tmp/trivy.jsonis missing or zero-length after the command, treat it as a scanner failure (see Heuristics).
2. Parse the report
Use the Read tool to load /tmp/trivy.json into your reasoning
context. Do NOT attempt to use cat, head, tail, jq, grep,
awk, or any other shell command to inspect the file — those aren't
in the agent's allowed_tools (only Bash(trivy:*) is) and the Bash
tool will deny them, burning turns on retries. The Read tool is the
intended path for inspecting on-disk JSON.
The file is on the order of tens-to-hundreds of KB; one Read call loads it cleanly.
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.
- 5d ago Changed · +1 lines b6d132133ca2
- 9d ago First seen · 160 lines · 54 tokens per session scan A a2cfc0458ac8
dep-scan is a skill published in the GitHub repository epam/ai-dial-chat (504 stars, last pushed today), licensed Apache-2.0. It adds 54 tokens to every session and 1,325 once invoked, about $0.0003 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.
Other skills, from other repositories
duckduckgo-search
Free keyless web, news, and image search via ddgs.
subagent-driven-development
Execute plans via delegatetask subagents (2-stage review).
mcporter
List, auth, and call MCP servers/tools from the terminal.
mem0-oss-to-platform
Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…
deploy-docker-compose
Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…
mapping-to-snomed
Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…