aiscope 0.1.1

DevTools for your AI coding tools' memory. See what Cursor, Claude Code, and Copilot actually remember about your project — and where they disagree.
1
2
3
4
5
6
7
8
//! JSON renderer. Pure passthrough — the model derives Serialize.

use crate::model::ContextBundle;
use anyhow::Result;

pub fn render(bundle: &ContextBundle) -> Result<String> {
    Ok(serde_json::to_string_pretty(bundle)?)
}