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
//! Plugin ecosystem validation: hooks, agents, commands, manifest,
//! and cross-component consistency.

pub mod agent;
pub mod command;
pub mod cross;
pub mod hooks;
pub mod manifest;

pub use agent::validate_agent;
pub use command::validate_command;
pub use cross::validate_cross_component;
pub use hooks::validate_hooks;
pub use manifest::{validate_manifest, PluginManifest};