omni-dev 0.23.1

A powerful Git commit message analysis and amendment toolkit
Documentation
//! MCP (Model Context Protocol) server implementation.
//!
//! Exposes omni-dev's business logic to AI assistants via the MCP protocol.
//! See [ADR-0021](../../docs/adrs/adr-0021.md) for the architectural decision
//! behind the second-binary approach.

pub mod ai_tools;
pub mod atlassian_tools;
pub mod cancel;
pub mod config_tools;
pub mod confluence_tools;
pub mod error;
pub mod git_tools;
pub mod jira_core_tools;
pub mod jira_tools;
pub mod resources;
pub mod runtime;
pub mod server;
pub mod truncate;
pub mod validate;

pub use cancel::{cancellable, cancelled_error, spawn_blocking_cancellable};
pub use error::tool_error;
pub use resources::{ResourceFormat, ResourceUri, UriParseError};
pub use runtime::{
    feature_flags, log_startup_event, serve_with, try_init_tracing, write_error_chain,
};
pub use server::OmniDevServer;
pub use truncate::{truncate_response, DEFAULT_MAX_RESPONSE_BYTES};