-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
Jacob Centner edited this page Apr 10, 2026
·
2 revisions
Get your first scan running in under 5 minutes.
sentinel init /path/to/your/repoThis creates:
-
sentinel.toml— configuration file with documented defaults -
.sentinel/directory — database, reports, and output - Adds
.sentinel/to.gitignore
Choose a profile for quick setup:
sentinel init /path/to/repo --profile minimal # no LLM needed, heuristic-only
sentinel init /path/to/repo --profile standard # all detectors, basic LLM
sentinel init /path/to/repo --profile full # all detectors, enhanced analysissentinel scan /path/to/your/repoOutput:
Scan complete: 12 findings in run #1
Severity: 3 medium, 9 low
Report: /path/to/your/repo/.sentinel/report-1.md
No LLM? Add
--skip-judge --skip-llmto run with only deterministic detectors. No model provider needed.Using a cloud provider instead of Ollama? Configure it in
sentinel.toml— see Model Providers for OpenAI and Azure setup.
Open the generated markdown report, or launch the web UI:
sentinel serve /path/to/your/repoThis opens a browser-based dashboard at http://127.0.0.1:8888.
# Suppress a false positive
sentinel suppress 3 --reason "Intentional complexity in parser"
# Approve a finding for GitHub issue creation
sentinel approve 7export SENTINEL_GITHUB_TOKEN=ghp_...
export SENTINEL_GITHUB_OWNER=your-username
export SENTINEL_GITHUB_REPO=your-repo
sentinel create-issues --dry-run # preview first
sentinel create-issues # create for real- Configuration — customize detectors, models, and thresholds
- Detectors — learn what each detector finds
- Scheduling — set up overnight scans with cron
- Morning Report — understand the report format
Local Repo Sentinel · MIT License
Getting Started
Reference
Detectors
- Detector: Todo Scanner
- Detector: Complexity
- Detector: Dead Code
- Detector: Dep Audit
- Detector: Docs Drift
- Detector: Unused Deps
- Detector: Lint Runner
- Detector: ESLint Runner
- Detector: Go Linter
- Detector: Rust Clippy
- Detector: Git Hotspots
- Detector: Stale Env
- Detector: Semantic Drift
- Detector: Test Coherence
- Detector: CI/CD Drift
- Detector: Architecture Drift
- Detector: Inline Comment Drift
- Detector: Intent Comparison
Advanced
Workflow