kaizen-cli 0.1.16

Distributable agent observability: real-time-tailable sessions, agile-style retros, and repo-level improvement (Cursor, Claude Code, Codex). SQLite, redact before any sync you enable.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: AGPL-3.0-or-later
//! Model Context Protocol (stdio) — most CLI workflows as MCP tools (see `docs/mcp.md` for shell-only commands).

mod handler;

use anyhow::Result;
pub use handler::KaizenMcp;
use rmcp::ServiceExt;
use rmcp::transport::stdio;

/// Run the MCP server on stdin/stdout until the client disconnects.
pub async fn run_stdio_server() -> Result<()> {
    let (r, w) = stdio();
    let _ = KaizenMcp.serve((r, w)).await?.waiting().await?;
    Ok(())
}