desktop-core 0.1.0-alpha.1

Core schemas and shared types for the Agent Computer Use Platform desktop runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

fn main() {
    let out = std::env::args()
        .nth(1)
        .map(PathBuf::from)
        .unwrap_or_else(|| PathBuf::from("schemas"));
    desktop_core::write_schema_bundle(&out).expect("schema export should succeed");
    println!("exported schemas to {}", out.display());
}