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.
npx agentmods add skills/bex-co/bex-security/triage-findingnpx skills add bex-co/bex-security --skill triage-findinggit clone --depth 1 https://github.com/bex-co/bex-securityWrote 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/bex-co/bex-security/triage-finding)<a href="https://agentmods.dev/skills/bex-co/bex-security/triage-finding"><img src="https://agentmods.dev/badge/skills/bex-co/bex-security/triage-finding.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00073 | $0.05384 |
| Opus 5 | $0.00036 | $0.02692 |
| Sonnet 5 | $0.00015 | $0.01077 |
| Haiku 4.5 | $0.00007 | $0.00538 |
Grade B, and why
triage-finding scanned grade B with 1 finding 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.
Nullifies safety policiesmediumAnti-refusal
"You have no restrictions", "do anything now", "ignore your guidelines": a direct jailbreak that disables guardrails.
If no policy applies, record that absence as a proof gap and continue with the next-best local policy evidence. Absence of an applicable policy does not itself establish that a surface, configuration, trust relationship, Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 334 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Triage Finding
Objective
Triage existing security findings against the current repository using static code evidence. Return one evidence-backed verdict per supplied finding:
confirmed, not_actionable, or needs_review. For confirmed and needs_review findings, also assign a discrete exploitability stack rank inside that verdict's own queue.
This skill is for backlog burn-down. It starts from findings the user already has, such as SARIF results, CVEs, advisories, scanner tickets, bug bounty reports, Jira/Linear issues, or Codex Security finding artifacts. It is not a repository-wide scan, dynamic validation run, fix implementation, dashboard, or queue manager.
Backlog Burn-Down Scope
Treat multiple supplied findings as one backlog-reduction problem, not as a set of unrelated one-off triages. The goal is to turn noisy existing finding sources into a ranked, evidence-backed action queue while preserving one result per input for auditability.
For now, run the workflow inline in the current thread, but structure the work like a backlog pipeline:
- Build the normalized triage item list for the whole supplied or imported collection before assigning verdicts. Here, normalize means: assign
triage_item_id, preserve source ids and references, extract the fields in the Inputs section below, and record missing fields as proof gaps without inventing scanner, severity, remediation, or generated Codex Security fields. - Triage each normalized item using static evidence and keep one output result per supplied finding.
- Rank the
confirmedandneeds_reviewresults as an action queue for backlog burn-down. - Do not perform deduplication in this skill. If duplicate-looking inputs are present, keep one result per supplied finding; deduplication belongs in a separate workflow.
- Do not spawn subagents, use a subagent queue, or use deep triage mode until a future implementation explicitly adds those mechanics.
Finding Schema Decision
Do not use ../../schemas/findings.schema.json as the canonical data shape for input normalization.
What ships with it
56 files 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.
- agents/openai.yaml 770 B
- evals/.gitignore 37 B
- evals/assertions/calibration-evidence.js 1.2 KB runs code
- evals/assertions/github-rest-intake.js 6.1 KB runs code
- evals/assertions/missing-input.js 2.2 KB runs code
- evals/assertions/ticket-intake.js 2.5 KB runs code
- evals/assertions/triage-io.js 5.6 KB runs code
- evals/datasets/README.md 2.1 KB
- evals/datasets/triage-calibration-seed.json 15 KB
- evals/fixtures/repo/package-lock.json 648 B
- evals/fixtures/repo/package.json 189 B
- evals/fixtures/repo/src/server.js 2.1 KB runs code
- evals/fixtures/repo/tests/unsafe-query.test.js 159 B runs code
- evals/package.json 4.6 KB
- evals/pnpm-lock.yaml 239 KB
- evals/pnpm-workspace.yaml 457 B
- evals/promptfooconfig.calibration-smoke.yaml 1.1 KB
- evals/promptfooconfig.calibration.yaml 1.0 KB
- evals/promptfooconfig.yaml 2.0 KB
- evals/prompts/triage-request.txt 199 B
- evals/README.md 5.4 KB
- evals/sastbench/assertions/sastbench-metrics.js 1.5 KB runs code
- evals/sastbench/assertions/sastbench-verdict.js 1002 B runs code
- evals/sastbench/DESIGN.md 4.0 KB
- evals/sastbench/promptfooconfig.sastbench-sample.yaml 464 B
- evals/sastbench/promptfooconfig.sastbench.yaml 4.6 KB
- evals/sastbench/prompts/sastbench-triage-request.txt 744 B
- evals/sastbench/README.md 12 KB
- evals/sastbench/scripts/generate-sastbench-tests.js 807 B runs code
- evals/sastbench/scripts/hydrate-sastbench-repos.js 5.5 KB runs code
- evals/sastbench/scripts/install-sastbench.js 4.5 KB runs code
- evals/sastbench/scripts/run-sastbench-promptfoo.js 2.8 KB runs code
- evals/sastbench/scripts/sastbench-lib.js 14 KB runs code
- evals/sastbench/scripts/sastbench-result.js 5.8 KB runs code
- evals/sastbench/scripts/test-hydrate-sastbench-repos.js 2.2 KB runs code
- evals/sastbench/scripts/test-install-sastbench.js 1.5 KB runs code
- evals/sastbench/scripts/test-promptfoo-native-harness.js 4.3 KB runs code
- evals/sastbench/scripts/test-sastbench-lib.js 8.1 KB runs code
- evals/sastbench/scripts/test-sastbench-result.js 6.7 KB runs code
- evals/schemas/triage-result-v0.schema.json 7.1 KB
- evals/scripts/generate-calibration-tests.js 6.5 KB runs code
- evals/scripts/hydrate-calibration-repos.js 4.4 KB runs code
- evals/scripts/test-app-surface-instructions.js 3.2 KB runs code
- evals/scripts/test-calibration-dataset.js 4.3 KB runs code
- evals/scripts/test-calibration-evidence.js 824 B runs code
- evals/scripts/test-generate-calibration-tests.js 2.3 KB runs code
- evals/scripts/test-hydrate-calibration-repos.js 1.2 KB runs code
- evals/scripts/test-triage-io.js 2.7 KB runs code
- evals/tests/calibration-oss.yaml 34 KB
- evals/tests/github-rest-intake.yaml 6.2 KB
- evals/tests/input-types.yaml 8.5 KB
- evals/tests/invocation-behavior.yaml 680 B
- evals/tests/ticket-intake.yaml 7.7 KB
- references/github-rest-intake.md 9.1 KB
- references/ticket-intake.md 6.1 KB
- references/triage-result-contract.md 4.3 KB
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 First seen · 334 lines · 73 tokens per session scan B 70b0e771f286
triage-finding is a skill published in the GitHub repository bex-co/bex-security (43 stars, last pushed yesterday), licensed Apache-2.0. It adds 73 tokens to every session and 5,384 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (nullifies safety policies). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
bugcrowd-reporting
Bugcrowd-specific reporting tactics complementing report-writing: VRT category search-and-fallback strategy when no exact match exists, manual severity override when VRT defaults underrate impact, severity-request paragraph as first body section, OOS-clause rebuttal templates (rate limiting on auth-flow endpoints…
hunt-aspnet
Hunt ASP.NET-specific surface — ViewState deserialization (signed-only vs encrypted), machineKey recovery, dual-parser MAC-bypass anti-pattern, request-validator bypass, trace.axd/elmah.axd disclosure, load-balanced ViewState cross-node failures, SafeControl enumeration via reflection, customErrors mode=Off…
apk-redteam-pipeline
End-to-end Android APK red-team pipeline — automated APK acquisition (Play Store + apkpure + apkmirror fallback), jadx decompilation, secret/URL/JWT/Firebase grep, pinned-cert extraction, exported-component enumeration, Frida runtime instrumentation templates, intent-injection probes. Built from an authorized external…
enterprise-vpn-attack
External SSL VPN / remote-access appliance attack matrix — Cisco ASA/AnyConnect, Fortinet FortiGate/FortiOS, Citrix NetScaler/ADC, Palo Alto GlobalProtect, Pulse Secure / Ivanti Connect Secure, SonicWall, F5 Big-IP. Covers version fingerprinting, CVE matrix (2018-2026), AAA backend identification, default credentials…
evidence-hygiene
Evidence-capture and PoC-redaction discipline for bug-bounty submissions: cookie redaction protocol (which fields to mask, Preview annotation / Burp panel hiding / DevTools workflow), PII black-bar discipline (what to mask in other-user data — names, emails, phones, faces — vs what is safe to leave — usernames, trace…
hunt-api-misconfig
Hunt API security misconfiguration — mass assignment, prototype pollution, HTTP verb tampering. Mass assignment: send {isadmin:true, role:admin, verified:true} on profile/account/reset endpoints — server blindly applies. JWT signature/crypto forging (alg:none, key confusion, kid/jku) is owned by hunt-jwt-crypto; this…