rust-doctor 0.2.0

A unified code health tool for Rust — scan, score, and fix your codebase
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Prompt template for the deep-audit workflow.
/// Interpolated with `directory` at runtime.
pub fn deep_audit_prompt(directory: &str) -> String {
    format!(include_str!("prompts/deep_audit.md"), directory = directory)
}

/// Prompt template for the health-check workflow.
/// Interpolated with `directory` at runtime.
pub fn health_check_prompt(directory: &str) -> String {
    format!(
        include_str!("prompts/health_check.md"),
        directory = directory
    )
}