m1nd-mcp 0.8.0

MCP Server for m1nd. Stop letting AI grep your codebase. Neuro-symbolic connectome for AI agents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// === m1nd-mcp/src/perspective/mod.rs ===
// Perspective subsystem: stateful navigation, locking, and route management.
// From 12-PERSPECTIVE-SYNTHESIS prerequisite chain.
//
// Submodules:
// - state:         Core types (PerspectiveState, LockState, enums, limits)
// - keys:          Content-addressable edge keys and route IDs (Theme 4)
// - validation:    Input validation and parameter bounds (Theme 9)
// - confidence:    Confidence calibration and epistemic safety (Theme 13)
// - peek_security: Peek file security pipeline (Theme 6)

pub mod confidence;
pub mod keys;
pub mod peek_security;
pub mod state;
pub mod validation;