codeskeleton 0.1.0

Turn any folder of code into a queryable knowledge graph. Single binary, zero runtime dependencies, blazing fast.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! codeskeleton — turn any folder of code into a queryable knowledge graph.
//!
//! Single binary, zero runtime dependencies, blazing fast AST extraction
//! via tree-sitter with parallel processing.

pub mod analyze;
pub mod cache;
pub mod cluster;
pub mod detect;
pub mod export;
pub mod extract;
pub mod graph;
pub mod languages;
pub mod report;
pub mod types;