-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Jacob Centner edited this page Apr 10, 2026
·
2 revisions
- Python 3.11+
- Git (required for git-hotspots, todo-scanner age enrichment, incremental scans)
- Ollama (optional) — for local LLM judgment and semantic analysis. Install Ollama
These tools enable specific detectors. Sentinel works without them — detectors that need unavailable tools simply produce no findings.
| Tool | Detector | Install |
|---|---|---|
| ruff | lint-runner |
pip install ruff (included in [detectors] extra) |
| pip-audit | dep-audit |
pip install pip-audit (included in [detectors] extra) |
| ESLint or Biome | eslint-runner |
npm install -g eslint or npm install -g @biomejs/biome
|
| golangci-lint | go-linter |
Install guide |
| cargo clippy | rust-clippy |
Included with Rust toolchain |
git clone https://github.com/jcentner/sentinel.git
cd sentinel
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[detectors]"The [detectors] extra installs ruff and pip-audit for full Python detector coverage.
pip install -e ".[web]"Installs Starlette, Jinja2, and uvicorn for the browser-based triage dashboard.
pip install -e ".[detectors,web]"sentinel --version
sentinel doctor # checks all tools and configsentinel doctor reports which external tools are available and which detectors will be active.
If you want LLM-assisted detectors (semantic-drift, test-coherence) or the LLM judge:
# Install Ollama (see https://ollama.com/)
ollama pull qwen3.5:4b # default model (4B params, ~2.5 GB)
ollama serve # start the serverSentinel connects to Ollama at http://localhost:11434 by default. Override with --ollama-url or ollama_url in sentinel.toml.
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