atm-agent-mcp 0.14.0

MCP proxy for managing Codex agent sessions with ATM team integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `sessions` subcommand — list and manage agent sessions (stub).
//!
//! Full session management is planned for Sprint A.3+. This stub returns an
//! empty session list in JSON format.

use crate::cli::SessionsArgs;

/// Run the `sessions` subcommand.
///
/// # Errors
///
/// Currently infallible. Returns `Ok(())` after printing an empty session list.
pub async fn run(_args: SessionsArgs) -> anyhow::Result<()> {
    println!("[]");
    Ok(())
}