omni-dev 0.41.0

AI-powered git commit rewriter, PR generator, and MCP server for Jira, Confluence, Datadog, Gmail, and Drive.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Contextual intelligence system for enhanced commit message analysis.

pub mod branch;
pub mod discovery;
pub mod files;
pub mod patterns;

pub use branch::BranchAnalyzer;
pub use discovery::{
    config_source_label, load_commit_rules, load_config_content, load_project_scopes,
    load_project_scopes_only, load_scopes_file_strict, resolve_context_dir, resolve_context_dir_at,
    resolve_context_dir_with_source, resolve_context_dir_with_source_at, ConfigDirSource,
    ConfigSourceLabel, ProjectDiscovery, ScopesFile,
};
pub use files::FileAnalyzer;
pub use patterns::WorkPatternAnalyzer;