dictator 0.17.2

Dictator - structural linter framework with native and WASM decree support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! MCP host implementation - dictator as guest using mcp-host framework

mod prompts;
mod resources;
mod server;
mod tools;

pub use server::run;

/// Check if .dictate.toml exists in current directory
fn config_exists() -> bool {
    std::env::current_dir()
        .map(|cwd| cwd.join(".dictate.toml").exists())
        .unwrap_or(false)
}