RFC 0002 (runbook-action-lookup): - Add action metadata storage to runbooks - Implement blue_runbook_lookup with word-based matching - Add blue_runbook_actions to list all actions RFC 0004 (adr-adherence): - Add blue_adr_list, blue_adr_get, blue_adr_relevant, blue_adr_audit - Implement keyword-based relevance matching with stem-like prefixes - Add adr:N query support in blue_search RFC 0005 (local-llm-integration): - Create blue-ollama crate for embedded Ollama server management - Add LlmProvider trait and MockLlm in blue-core - Implement OllamaLlm with HTTP client for model operations - Add MCP tools: blue_llm_start/stop/status, blue_model_pull/list/remove/warmup - Support BLUE_OLLAMA_PATH env var for air-gapped builds Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
75 lines
1.4 KiB
TOML
75 lines
1.4 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/blue-core",
|
|
"crates/blue-mcp",
|
|
"crates/blue-ollama",
|
|
"apps/blue-cli",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "CC0-1.0"
|
|
repository = "https://git.beyondtheuniverse.superviber.com/superviber/blue"
|
|
authors = ["Eric Minton Garcia"]
|
|
|
|
[workspace.dependencies]
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.0", features = ["full", "io-std"] }
|
|
|
|
# Error handling
|
|
thiserror = "2.0"
|
|
anyhow = "1.0"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# CLI
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
# Database
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
|
|
# Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Git
|
|
git2 = "0.19"
|
|
|
|
# Regex
|
|
regex = "1.10"
|
|
|
|
# Semver
|
|
semver = { version = "1.0", features = ["serde"] }
|
|
|
|
# HTTP server (daemon)
|
|
axum = "0.8"
|
|
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
|
|
|
# HTTP client (Forgejo API, Ollama)
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
|
|
# Directories
|
|
dirs = "5.0"
|
|
|
|
# Testing HTTP services
|
|
tower = { version = "0.5", features = ["util"] }
|
|
http-body-util = "0.1"
|
|
|
|
# Crypto
|
|
sha2 = "0.10"
|
|
|
|
# Testing
|
|
tempfile = "3.15"
|
|
|
|
# Internal
|
|
blue-core = { path = "crates/blue-core" }
|
|
blue-mcp = { path = "crates/blue-mcp" }
|
|
blue-ollama = { path = "crates/blue-ollama" }
|