Skip to main content

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;
14pub mod meta;
15#[cfg(any(feature = "local-inference", feature = "injection-model"))]
16pub mod model_integrity;
17pub mod paths;
18pub mod storage;
19pub mod summarizer;
20pub mod tasks;
21pub mod telemetry;
22pub mod tokenizer;
23pub mod vlm;