omni-dev 0.32.0

AI-powered git commit rewriter, PR generator, and MCP server for Jira, Confluence, and Datadog.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Built-in daemon services.
//!
//! Each submodule provides one [`DaemonService`](super::service::DaemonService)
//! implementation: [`bridge`] hosts the browser bridge, [`snowflake`] hosts the
//! Snowflake query engine, and [`worktrees`] tracks the repos/worktrees open
//! across every VS Code window (the real services); [`echo`] is a trivial test
//! service used by the framework's own tests.

pub mod bridge;
pub mod echo;
pub mod snowflake;
pub mod worktrees;