- 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>
19 lines
382 B
TOML
19 lines
382 B
TOML
[package]
|
|
name = "blue"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Blue CLI - Welcome home"
|
|
|
|
[[bin]]
|
|
name = "blue"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
blue-core.workspace = true
|
|
blue-mcp.workspace = true
|
|
clap.workspace = true
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|