Quick Start¶
Get your first audit running in under a minute.
1. Create a Config File¶
Create a noxaudit.yml in your project root:
Or copy the example config:
2. Set Your API Key¶
3. Run an Audit¶
This sends your codebase's security-relevant files to the AI provider and returns a list of findings.
4. Read the Output¶
Noxaudit prints a summary to the terminal:
The full report is saved to .noxaudit/reports/my-app/{date}-security.md.
View it with:
5. Run Multiple Focus Areas¶
Combine focus areas in a single API call to save on input tokens (files are sent once, deduplicated):
# Comma-separated
noxaudit run --focus security,performance
# All 7 focus areas at once
noxaudit run --focus all
What's Next¶
- Your First Audit — end-to-end walkthrough with cost estimation, decisions, and reporting
- Configuration — full
noxaudit.ymlreference - Focus Areas — what each audit checks