crosslink 0.8.0

A synced issue tracker CLI for multi-agent AI development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod core;
pub mod edit;
mod pages;
mod search;
mod sync;

#[cfg(test)]
mod tests;

// Re-export public API so `crate::knowledge::*` paths remain unchanged.

#[allow(unused_imports)]
pub use self::core::{
    has_conflict_markers, parse_frontmatter, resolve_accept_both, serialize_frontmatter,
    KnowledgeManager, PageFrontmatter, PageInfo, SearchMatch, Source, SyncOutcome,
    KNOWLEDGE_BRANCH, KNOWLEDGE_CACHE_DIR,
};