agentport 0.1.0

A unified TUI installer for AI agent skills and plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

pub mod adapters;
pub mod install;
pub mod model;
pub mod scanner;
pub mod source;
pub mod state;

pub use adapters::{AgentAdapter, detect_agents};
pub use install::{
    CodexCommandRunner, InstallRequest, build_plan, execute_plan, execute_plan_with_runner,
    uninstall, uninstall_with_runner,
};
pub use model::*;
pub use scanner::{ArtifactScanner, DefaultScanner};
pub use source::{DefaultSourceProvider, PreparedSource, SourceProvider};
pub use state::StateStore;