1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! # roboticus-core
//!
//! Core types, configuration, error handling, and encrypted credential storage
//! for the Roboticus agent runtime. This is the leaf crate in the dependency
//! graph -- every other workspace crate depends on it.
//!
//! ## Key Types
//!
//! - [`RoboticusConfig`] -- Central configuration loaded from `roboticus.toml`
//! - [`RoboticusError`] / [`Result`] -- Unified error type (13 variants) used across all crates
//! - [`Keystore`] -- Encrypted key-value storage for API keys and secrets
//! - [`SurvivalTier`] -- Financial health tier derived from on-chain balance
//!
//! ## Modules
//!
//! - `config` -- Configuration structs, TOML parsing, tilde expansion, validation
//! - `error` -- `RoboticusError` enum and `Result` type alias
//! - `keystore` -- Encrypted JSON file store with machine-key auto-unlock
//! - `personality` -- OS/firmware personality loading from workspace
//! - `style` -- Terminal theme (CRT, typewriter effect, icons)
//! - `types` -- Shared domain enums: `SurvivalTier`, `AgentState`, `ApiFormat`,
//! `ModelTier`, `PolicyDecision`, `RiskLevel`, `SkillManifest`, etc.
pub use ;
pub use ;
pub use Keystore;
pub use *;