selfware 0.2.2

Your personal AI workshop — software you own, software that lasts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Code analysis module
//!
//! This module contains code analysis and search functionality including:
//! - Code graph visualization
//! - Error analysis
//! - BM25 search
//! - Vector storage
//! - Technical debt tracking

pub mod analyzer;
pub mod bm25;
pub mod code_graph;
pub mod tech_debt;
pub mod vector_store;