agent-launch 0.1.0

Draft platform-native release announcements (HN, Reddit, X, Mastodon, LinkedIn) from CHANGELOG + README (Rust port of @p-vbordei/agent-launch)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! agent-launch — draft platform-native release announcements.
//!
//! Rust port of [@p-vbordei/agent-launch](https://github.com/p-vbordei/agent-launch).

pub mod config;
pub mod context;
pub mod draft;
pub mod platforms;

pub use config::{
    load_launch_config, Context as LaunchContext, LaunchConfig, LaunchConfigError, Platform,
    Project,
};
pub use context::{gather_context, ContextError, GatheredContext};
pub use draft::{draft_one, AnthropicClient, DraftResult};
pub use platforms::{list_platforms, load_platform_template, PlatformKind, PlatformTemplate};