aicx 0.9.2

Operator CLI + MCP server: canonical corpus first, optional semantic index second (Claude Code, Codex, Gemini)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use anyhow::{Context, Result};
use std::path::PathBuf;

pub fn default_roots() -> Result<Vec<PathBuf>> {
    let home = dirs::home_dir().context("No home directory")?;
    let aicx_home = crate::store::resolve_aicx_home()?;
    Ok(vec![
        aicx_home,
        home.join(".ai-contexters"),
        home.join(".xcia"),
    ])
}