| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
⭐ If Sentinel gives your AI agents a safety net, a star helps others find it.
Sentinel is a safe, auditable agentic system administration tool written in Rust. It drives an Investigate → Plan → Approve → Act workflow: the LLM gathers read-only observations, proposes a structured plan, waits for explicit operator approval, then executes under a strict deny-by-default policy engine with a hash-chained audit log.
The capability catalog and the deny-by-default policy engine — no API key needed for either. Recorded from the actual binary with asciinema + agg.
# Interactive TUI (default)
sentinel
# With a goal on the command line
sentinel run "Ensure nginx is running and serving traffic"
# Target a specific host
sentinel tui --host web-01.prod
# With Anthropic backend
ANTHROPIC_API_KEY=sk-... sentinel run "Fix high disk usage on /var"
# With Ollama (local)
sentinel --backend ollama --model llama3 run "Check CPU load"# Requires Rust 1.75+
cargo build --release
# Run all tests
cargo test --workspace
# Static analysis
cargo clippy --workspace --all-targets -- -D warnings
# Security audit
cargo auditrustup target add x86_64-unknown-linux-musl
cargo build --release --target x86_64-unknown-linux-musl| Command | Description |
|---|---|
| sentinel | Launch interactive TUI (default) |
| sentinel tui [--host HOST] | Launch TUI targeting HOST |
| sentinel run GOAL [--host HOST] [--dry-run] | Non-interactive run |
| sentinel capabilities | List all built-in capabilities |
| sentinel policy | Show default policy rules |
| sentinel verify-audit PATH | Verify audit log chain integrity |
sentinel-core — Capability trait, RiskTier, CapabilityResult, Plan types sentinel-exec — Sandboxed command executor (allowlist, timeout, rlimits) sentinel-policy — PolicyEvaluator: kill switch -> resource guards -> rules sentinel-audit — SHA-256 hash-chained audit log, JSONL, Prometheus metrics sentinel-capabilities — 14 concrete capabilities (fs, process, packages, net, metrics) sentinel-agent-llm — Investigate/Plan/Act reasoning loop, LLM backends sentinel-fleet — mTLS fleet management, staged rollouts sentinel-tui — ratatui TUI: 5 tabs, approval workflow, clap CLI
See docs/adr/ for full Architecture Decision Records and docs/ddd/ for Domain-Driven Design documentation.
| Repo | What it does |
|---|---|
| codescope | Rust code-intelligence engine for AI agents — no cloud, no DB |
| secret-scan | Rust secret scanner — obfuscation detection |
| turbo-flow | Agentic dev environment — 60+ AI subagents, SPARC methodology |
MIT — see LICENSE.
| Back | FazBrowse Home | New Git URL |