atelier-agentic 0.1.0

A Rust crate for agentic workflow tooling.
Documentation
#![forbid(unsafe_code)]

/// Returns the crate name.
pub fn package_name() -> &'static str {
    "atelier-agentic"
}

/// Returns the publishing space / organization for this crate.
pub fn published_by() -> &'static str {
    "knottdynamics"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_package_name() {
        assert_eq!(package_name(), "atelier-agentic");
    }
}