asobi 0.6.0

A persistent, project-local knowledge graph CLI for AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Versioned public storage API.
//!
//! The v2 capability traits are the current public contract. Breaking changes
//! belong in a new versioned module (`v3`, …); the unversioned re-exports below
//! are a migration convenience for current callers.

pub mod v2;

pub use v2::{
    API_VERSION, ApiError, ApiResult, BackendCapabilities, BackendHealth, BackendInfo,
    BackupReceipt, BackupRequest, BackupStore, GraphStore, ImportReport, MaintenanceStore,
    OpenNodes, SNAPSHOT_FORMAT_VERSION, SearchQuery, SearchStore, SkillRecord, SkillStore,
    Snapshot, SnapshotStore, Stats, StorageLocation, TaskStore, TruthVersion,
};