agent-team-mail-core 0.27.0

Core library for agent-team-mail: file-based messaging for AI agent teams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! System and repository context detection
//!
//! This module provides runtime context about the system, Claude installation,
//! and current repository. All detection is local (no network calls).

mod platform;
mod repo;
mod system;

pub use platform::Platform;
pub use repo::{GitProvider, RepoContext};
pub use system::SystemContext;