carryover 0.1.3

Zero-LLM-token context-handoff daemon — resume any AI session across Claude Code, Cursor, and Codex.
Documentation
1
2
3
4
5
6
use anyhow::{Context, Result};

#[tokio::main(flavor = "multi_thread")]
async fn main() -> Result<()> {
    carryover::cli::run().await.context("carryover failed")
}