aiscope 0.1.0

DevTools for your AI coding tools' memory. See what Cursor, Claude Code, and Copilot actually remember about your project — and where they disagree.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Public library API — used by integration tests and (later) embedders.
//! The binary entry point is `src/main.rs`.

pub mod canon;
pub mod cmd;
pub mod detect;
pub mod diag;
pub mod extract;
pub mod frontmatter;
pub mod model;
pub mod parse;
pub mod reason;
pub mod render;
pub mod scanner;

pub use cmd::build_bundle;