rover/lib.rs
1//! Rover — an MCP server for fetching and prepping web content for LLM agents.
2//!
3//! See `docs/superpowers/prd/2026-05-07-rover-prd.md` for product spec and
4//! `docs/superpowers/specs/2026-05-07-rover-design.md` for architectural decisions.
5
6pub mod cli;
7pub mod config;
8pub mod doctor;
9pub mod error;
10pub mod extractor;
11pub mod fetcher;
12pub mod guard;
13pub mod mcp;
14#[cfg(any(feature = "local-inference", feature = "injection-model"))]
15pub mod model_integrity;
16pub mod paths;
17pub mod storage;
18pub mod summarizer;
19pub mod tasks;
20pub mod telemetry;
21pub mod tokenizer;
22pub mod vlm;