wootype 0.1.0

Type System as a Service - Rust-powered Go type checker for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Multi-Agent concurrency with branch isolation
//! 
//! Supports multiple AI Agents (Cursor, Claude Code, etc.)
//! with copy-on-write semantics for isolated type environments.

pub mod session;
pub mod branch;
pub mod coordinator;
pub mod rag;

pub use session::{AgentSession, SessionConfig, SessionId, AgentType, IsolationLevel};
pub use branch::{Branch, BranchManager};
pub use coordinator::{AgentCoordinator, AgentId, ConnectionRequest, ConnectionResult};
pub use rag::{TypeEmbeddings, SemanticSearch};