agent-file-tools 0.50.0

Agent File Tools — tree-sitter powered code analysis for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
//! Internal generator entry point for the governed dual-mode edit schema artifact.

fn main() {
    let artifact = aft::hashline::integration::regenerate_governed_edit_artifacts();
    println!(
        "{}",
        serde_json::to_string_pretty(&artifact)
            .expect("governed hashline edit schema artifact must serialize")
    );
}