aigent 0.7.1

A library, CLI, and Claude plugin for managing agent skill definitions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::path::PathBuf;

pub(crate) fn run(skill_dir: PathBuf) {
    let dir = super::resolve_skill_dir(&skill_dir);
    match aigent::read_properties(&dir) {
        Ok(props) => {
            println!("{}", serde_json::to_string_pretty(&props).unwrap());
        }
        Err(e) => {
            eprintln!("aigent properties: {e}");
            std::process::exit(1);
        }
    }
}