agent-fleet 0.1.0

Autonomous OSS-repo health for solo maintainers (Rust port of @p-vbordei/agent-fleet)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! agent-fleet — Autonomous OSS-repo health for solo maintainers.
//!
//! Rust port of @p-vbordei/agent-fleet.

pub mod config;
pub mod enroll;
pub mod prompts;
pub mod sandbox;
pub mod tick;

pub use config::{load_fleet_config, FleetConfig, FleetConfigError, FleetEntry};
pub use enroll::{enroll, EnrollError};
pub use prompts::{render_tick_prompt, TICK_PROMPT};
pub use sandbox::{is_allowed_command, AllowResult};
pub use tick::{tick_one, AnthropicClient, ExecFn, ExecResult, TickError, TickOutcome};