augent 0.6.5

Lean package manager for various AI coding platforms
1
2
3
4
5
6
7
8
9
10
11
//! Universal frontmatter format for bundle resources
//!
//! Parses YAML frontmatter (between `---` delimiters) and supports
//! platform-specific blocks keyed by Augent platform id. At install time,
//! common fields are merged with the platform block for the target platform.

mod frontmatter;

pub use frontmatter::{
    get_str, merge_frontmatter_for_platform, parse_frontmatter_and_body, serialize_to_yaml,
};