RFC 0001 - Cross-Repo Coordination with Realms: - Daemon architecture with HTTP server on localhost:7865 - SQLite persistence for sessions, realms, notifications - Realm service with git-based storage and caching - CLI commands: realm status/sync/check/worktree/pr/admin - Session coordination for multi-repo work RFC 0002 Phase 1 - Realm MCP Integration: - realm_status: Get realm overview (repos, domains, contracts) - realm_check: Validate contracts/bindings with errors/warnings - contract_get: Get contract details with bindings - Context detection from .blue/config.yaml - 98% expert panel alignment via 12-expert dialogue Also includes: - CLI documentation in docs/cli/ - Spike for Forgejo tunnelless access - 86 tests passing Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
678 B
TOML
31 lines
678 B
TOML
[package]
|
|
name = "blue-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Core data structures and logic for Blue"
|
|
|
|
[features]
|
|
test-helpers = []
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml.workspace = true
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
rusqlite.workspace = true
|
|
chrono.workspace = true
|
|
git2.workspace = true
|
|
axum.workspace = true
|
|
tower-http.workspace = true
|
|
reqwest.workspace = true
|
|
dirs.workspace = true
|
|
semver.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tower.workspace = true
|
|
http-body-util.workspace = true
|
|
tempfile.workspace = true
|