Finding sources
Severity scoring
Each finding carries two severity signals: OWASP Agentic Top-10 category — maps the finding to the relevant risk in the OWASP Top 10 for LLM Applications and Agentic AI. The category tells you what class of risk the finding represents (e.g.LLM01: Prompt Injection, LLM06: Excessive Agency).
AIVSS score — the AI Vulnerability Scoring System is an extension of CVSS adapted for AI-specific attack characteristics. It accounts for factors like exploitability in agentic contexts, blast radius across connected tools, and data sensitivity. The score (0.0–10.0) is mapped to a severity label:
Finding lifecycle
Findings move through a defined set of states:- Open — new finding, not yet reviewed
- Acknowledged — you have seen it and it is on the radar
- In progress — actively being remediated
- Resolved — fixed; the finding auto-resolves after N consecutive passing replays against your live agent
- Won’t fix — accepted risk; the finding is dismissed without remediation
- Duplicate — grouped with an existing incident
Finding replay
Every finding stores the original attack payload or triggering input. The Replay button re-runs that exact input against your current agent endpoint. Trident uses the same 3-judge ensemble as the red-team engine to evaluate the result. If the replay passes (the agent handles it safely) N consecutive times, Trident automatically marks the finding as Resolved. This gives you an objective, automated signal that your fix actually worked — not just that you think it did. To replay a finding manually, open it in the Findings inbox and click Replay. To configure the auto-resolve threshold (default: 3 consecutive passes), go to Project Settings → Findings.Agent self-reporting
Your agent has more context about what just went wrong than any external monitor can have. Thetrident.selfReport() method lets your agent proactively ship an observation to Trident as a first-class SELF_REPORT finding, with full access to the same downstream routing — Slack alerts, GitHub issues, Jira tickets, webhooks.
kind field is a kebab-case slug that becomes the finding’s category. Trident’s Sentinel triage agent recognises these standard kinds and surfaces richer evidence panels for them:
By default,
selfReport() is fire-and-forget — it does not block your agent’s request path. Pass await: true if you need the promise to resolve before continuing.
Filtering and querying findings
The Findings inbox in the dashboard supports filters across every dimension:- Source —
REDTEAM,FIREWALL,SAST,MONITOR,SELF_REPORT,CSPM,KSPM,IAC,SECRET,VULN,RUNTIME,MCP - Severity —
LOW,MEDIUM,HIGH,CRITICAL - OWASP category — filter to a specific Agentic Top-10 code
- Status — open, acknowledged, in progress, resolved
- Agent — scope to a specific agent ID
- Date range — last 7, 30, 90, or 180 days
Bulk actions
Select multiple findings in the inbox to apply actions in one step:- Confirm — mark all selected findings as confirmed true positives; each one generates a firewall deny rule within 5 minutes
- Dismiss — mark as
WONT_FIXorDUPLICATE - Replay — re-run all selected findings against your current agent