dot-agent-core 0.4.8

Core library for dot-agent profile management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Plugin Module
//!
//! Claude Code プラグイン関連の機能を提供する。
//!
//! - `manifest`: `.claude-plugin/plugin.json` のパース
//! - `registrar`: Claude Code settings.json へのプラグイン登録

pub mod manifest;
pub mod registrar;

// Re-exports
pub use manifest::{FilterConfig, PluginManifest, DEFAULT_COMPONENT_DIRS};
pub use registrar::{PluginRegistrar, PluginRegistrationResult};