episteme 0.3.1

Knowledge graph for software engineering — design patterns, refactorings, and laws for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod composite_graph;
pub mod detectors;
pub mod engine;
pub mod graph;
pub mod inference;
pub mod metrics;
pub mod problem_mapper;
pub mod summarizer;
pub mod types;

pub use composite_graph::CompositeGraph;
pub use engine::RefactoringInferenceEngine;
pub use graph::{GraphError, KnowledgeGraph};
pub use inference::*;
pub use metrics::{CodeMetrics, SmellDetection};
pub use types::*;