ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Plugin utilities - ported from ~/claudecode/openclaudecode/src/utils/plugins/
//!
//! This module provides plugin marketplace types and cache-only loading functions.

pub mod loader;
pub mod types;

pub use loader::{
    get_known_marketplace_names, get_marketplace_cache_only, get_plugin_by_id_cache_only,
    parse_plugin_identifier,
};
pub use types::{
    KnownMarketplace, KnownMarketplacesFile, PluginId, PluginMarketplace, PluginMarketplaceEntry,
    PluginMarketplaceMetadata, PluginMarketplaceOwner, PluginSource,
};