Skip to main content

convergio_night_agents/
lib.rs

1//! Night agent orchestration — scheduled agents, knowledge sync,
2//! project tracking with automatic knowledge base updates.
3
4pub mod auto_config;
5pub mod ci_optimizer;
6pub mod drift_detection;
7pub mod ext;
8pub mod inference_bridge;
9pub mod knowledge;
10pub mod knowledge_helpers;
11pub mod mcp_defs;
12pub mod memory_lint;
13pub mod memory_lint_checks;
14pub mod memory_lint_rules;
15pub mod memory_lint_types;
16pub mod routes;
17pub mod routes_memory_lint;
18pub mod routes_projects;
19pub mod routes_routing;
20pub mod routes_runs;
21pub mod runner;
22pub mod schema;
23pub mod smart_spawner;
24pub mod spawner;
25pub mod types;
26
27pub use ext::NightAgentsExtension;