skill-cli 0.3.0

Command-line interface for the Skill runtime - install, run, and manage AI agent skills
1
2
3
4
5
6
7
8
9
//! Authentication provider implementations.

pub mod oauth2;
pub mod api_key;
pub mod aws;

pub use oauth2::OAuth2Provider;
pub use api_key::ApiKeyProvider;
pub use aws::AwsProvider;