Skip to main content

agent_launch/
lib.rs

1//! agent-launch — draft platform-native release announcements.
2//!
3//! Rust port of [@p-vbordei/agent-launch](https://github.com/p-vbordei/agent-launch).
4
5pub mod config;
6pub mod context;
7pub mod draft;
8pub mod platforms;
9
10pub use config::{
11    load_launch_config, Context as LaunchContext, LaunchConfig, LaunchConfigError, Platform,
12    Project,
13};
14pub use context::{gather_context, ContextError, GatheredContext};
15pub use draft::{draft_one, AnthropicClient, DraftResult};
16pub use platforms::{list_platforms, load_platform_template, PlatformKind, PlatformTemplate};