agentty 0.8.2

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Session module router.
//!
//! This parent module intentionally exposes child modules and re-exports
//! session orchestration types and helper APIs.

mod core;
mod error;
mod workflow;

pub use core::SessionManager;
pub(crate) use core::{
    Clock, RealClock, RunAgentAssistTaskInput, SESSION_REFRESH_INTERVAL, SessionDefaults,
    SessionTaskService, SyncMainOutcome, SyncSessionStartError, TurnAppliedState,
    remote_branch_name_from_upstream_ref, session_branch, unix_timestamp_from_system_time,
};

pub use error::SessionError;
pub(crate) use workflow::refresh::SyncReviewRequestOutcome;