carryover 0.0.0

Keeps AI agents on-task across sessions, tool switches, and compaction — without burning context. Pre-launch placeholder; see GitHub for current status.
Documentation
//! # Carryover (pre-launch placeholder)
//!
//! This crate is a name reservation for the [Carryover](https://github.com/carryover-dev/carryover)
//! project — a local daemon that keeps AI agents on-task across sessions,
//! tool switches, and compaction events without burning context.
//!
//! **Status: pre-launch.** No working binary yet. The v0.1.0 release is in
//! active development.
//!
//! - Roadmap: <https://github.com/carryover-dev/carryover/issues/3>
//! - Architecture: <https://github.com/carryover-dev/carryover/blob/main/ARCHITECTURE.md>
//!
//! When v0.1.0 ships, this crate will be replaced with the real implementation.

#![doc(html_root_url = "https://github.com/carryover-dev/carryover")]
#![forbid(unsafe_code)]

/// Marker for the pre-launch placeholder release.
pub const STATUS: &str = "pre-launch-placeholder";

/// Project homepage.
pub const HOMEPAGE: &str = "https://github.com/carryover-dev/carryover";

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

    #[test]
    fn placeholder_metadata_is_set() {
        assert_eq!(STATUS, "pre-launch-placeholder");
        assert_eq!(HOMEPAGE, "https://github.com/carryover-dev/carryover");
    }
}