Your first scan produced an AIVSS score, a band, a tier, a finding count, and aDocumentation Index
Fetch the complete documentation index at: https://docs.agentguardian.io/llms.txt
Use this file to discover all available pages before exploring further.
scan.json. This page walks every field of that output and shows
how to act on it.
The terminal summary line
The last stdout line of every scan is the summary:| Field | Meaning |
|---|---|
scan | The scan id. Deterministic when paired with --seed. |
AIVSS=41 | Inverse-risk score in [0, 100]. Lower = more vulnerable. Computed in models/severity.py. |
band=not_evaluated | The bucket the AIVSS lands in. not_evaluated is forced when --model stub is in play or coverage drops below the authoritative threshold. See Severity Levels. |
tier=T4 | Auto-detected target risk tier. T1 = tools + memory + PII (most exposed). T4 = prompt-only (least). The swarm sizes per-agent budgets off the tier. |
findings=12 | How many adversarial probes produced a real, grader-confirmed vulnerability. |
coverage=54% | Fraction of the planned probe corpus the swarm actually executed inside the budget. The authoritative threshold is 95% for --mode full runs. |
report=... | Absolute path to the canonical, signed scan.json for this scan. |
The findings table
When the swarm finishes, the Rich-rendered final panel prints a per-finding table (here is an ASCII excerpt — actual terminal output uses panels and colours):http://127.0.0.1:7474/scans/<scan_id> and in the SARIF + Markdown
exports.
A single finding in detail
Openscan.json and grab the first record under findings[]. A
goal-hijack finding from a real testbench scan looks like this:
What each block means
severity
critical / high / medium / low / info. The per-finding weight that
feeds the AIVSS deduction (critical=20, high=10, medium=4,
low=1, info=0). See AIVSS Score.
probe_id
The specific attack payload that triggered the finding. Every probe is
a YAML file under src/agent_guardian/probes/asi*/ — open the file to
see the seed prompt, the expected signal, and the rule-based pre-grader
expression. Probes are versioned; the probe_library_version in the
top of scan.json pins which corpus produced the finding.
owasp_asi · mitre_atlas · csa_artrt
Every finding is cross-tagged to three taxonomies:
- OWASP ASI — Top 10 for Agentic Applications, 2026. The primary taxonomy.
- MITRE ATLAS — v5.4.0 technique IDs.
- CSA ARTRT — Cloud Security Alliance Agentic-AI Red Teaming reference.
agent
Which of the 14 specialist attackers found this. The 10 ASI specialists +
4 OWASP-LLM specialists (fuzzing, secret-extraction, denial-of-wallet,
detection-evasion) are described in Adversarial Swarm.
evidence
The full chain-of-custody record: the request payload sent to the
target, the target’s verbatim response, and the grader’s verdict +
rationale. This block is what an auditor will read first. Use
--bundle ./evidence/ to persist the full attacker transcripts + a
SHA-256 manifest. See Evidence Timeline.
aivss_delta
How many points this finding shaved off the starting 100. Sum the
deltas (with tier multipliers — see AIVSS Score)
and clamp to [0, 100] to get the headline number.
recommended_fix
A human-readable remediation hint generated alongside the finding. For
deeper guidance, follow the cross-link to the relevant page in the
Attack Library.
reproduction
The deterministic CLI invocation that reproduces the scan. Same
--seed, same target, same model, same probe corpus version →
bit-identical evidence record. The scan’s rng_seed +
aivss_formula_version + probe_library_version triple pins
reproducibility across machines.
Reproducing the finding
The whole report is reproducible by design. Re-run with the deterministic seed:--model gemini:gemini-2.5-flash-latest is not pinned;
--model gemini:gemini-2.5-flash is, as of v1.1).
Verifying the signature
Everyscan.json is signed with both HMAC-SHA256 (machine-local) and
Ed25519 (publish-able). Verify with:
Next step
AIVSS Score
The deterministic formula behind the headline number.
Severity Levels
The 6-band table and what
not_evaluated actually means.Evidence Timeline
Bundle layout, signature chain, auditor-ready export.
Report Schema
The canonical
agentguardian-scan-v1 JSON schema in full.Screenshots of the live dashboard, the GitHub Security tab, and the
PDF cover sheet are tracked under GTM-007. Until that ships this page
uses ASCII / code blocks as the canonical visual reference.