basemind 0.2.1

Full AI context layer over MCP — tree-sitter code-map, document RAG (PDF/Office/HTML/email + OCR + reranker), shared agent memory, on-demand web crawl, git history + blame + per-symbol diff. 300+ languages, 8 coding-agent harnesses, content-addressed Fjall + LanceDB.
1
2
3
4
5
6
7
8
9
10
11
12
13
// Migration chain across schema versions.
//
// Each function rewrites a parsed TOML/JSON Value from version N → N+1.
// `migrate_to_latest` walks the chain. v1 is current, so the chain is empty.

use serde_json::Value;

use super::ConfigError;

#[allow(dead_code)] // wired in when v2 lands
pub fn migrate_to_latest(value: Value) -> Result<Value, ConfigError> {
    Ok(value)
}