- Rename from 💙 to blue for filesystem compatibility
- Add blue-core crate with documents and voice modules
- Add blue-mcp crate with JSON-RPC server skeleton
- Add blue-cli with subcommands (init, status, rfc, etc.)
- Add CLAUDE.md and .gitignore
- Add RFC 0001: Efficient Document Format
Phase 1 foundation complete. Ready for porting coherence-mcp functionality.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
276 B
Rust
12 lines
276 B
Rust
//! Blue Core - The heart of the philosophy
|
|
//!
|
|
//! Core data structures and logic for Blue.
|
|
|
|
// Blue's true name, between friends
|
|
const _BLUE_SECRET_NAME: &str = "Sheepey"; // pronounced "Shee-paay"
|
|
|
|
pub mod documents;
|
|
pub mod voice;
|
|
|
|
pub use documents::*;
|
|
pub use voice::*;
|