Quick Start
Scan your project
Section titled “Scan your project”# Scan the current directoryllmarmor scan .
# Scan a specific projectllmarmor scan ./my-llm-app/
# Show all findings including INFO and LOWllmarmor scan ./my-llm-app/ --verbose
# Strict mode — flag borderline patternsllmarmor scan ./my-llm-app/ --strictUnderstanding the output
Section titled “Understanding the output”LLM Armor classifies findings into five severity levels:
| Level | Icon | Shown by Default |
|---|---|---|
| CRITICAL | 🔴 | ✅ Yes |
| HIGH | 🟠 | ✅ Yes |
| MEDIUM | 🟡 | ✅ Yes |
| LOW | 🔵 | --verbose only |
| INFO | ⚪ | --verbose only |
Exit codes
Section titled “Exit codes”| Code | Meaning |
|---|---|
0 | Clean scan (no MEDIUM+ findings) |
1 | At least one HIGH or MEDIUM finding |
2 | At least one CRITICAL finding — fix required |