wavekat-cli 0.0.14

Command-line client for the WaveKat platform (wk)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `wk agents` — print the bundled `AGENTS.md` integration guide for
//! AI agents. The file is embedded at build time so the running binary
//! is the authoritative source for whichever release the user installed.

use anyhow::Result;

const AGENTS_MD: &str = include_str!("../../AGENTS.md");

pub async fn run() -> Result<()> {
    print!("{AGENTS_MD}");
    if !AGENTS_MD.ends_with('\n') {
        println!();
    }
    Ok(())
}