Skip to main content

agent_fleet/
lib.rs

1//! agent-fleet — Autonomous OSS-repo health for solo maintainers.
2//!
3//! Rust port of @p-vbordei/agent-fleet.
4
5pub mod config;
6pub mod enroll;
7pub mod prompts;
8pub mod sandbox;
9pub mod tick;
10
11pub use config::{load_fleet_config, FleetConfig, FleetConfigError, FleetEntry};
12pub use enroll::{enroll, EnrollError};
13pub use prompts::{render_tick_prompt, TICK_PROMPT};
14pub use sandbox::{is_allowed_command, AllowResult};
15pub use tick::{tick_one, AnthropicClient, ExecFn, ExecResult, TickError, TickOutcome};