Add 3 tools: - blue_dialogue_lint: Validate dialogue markdown against pattern - blue_extract_dialogue: Extract dialogue from agent JSONL outputs - blue_playwright_verify: Generate Playwright verification plans Features: - Weighted scoring for dialogue linting (Critical/Major/Minor) - jq fallback to pure Rust for JSONL extraction - URL safety classification (localhost/dev/staging/production) Total: 50 tools ported from coherence-mcp Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
951 B
TOML
49 lines
951 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/blue-core",
|
|
"crates/blue-mcp",
|
|
"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"
|
|
|
|
# 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"
|
|
|
|
# Internal
|
|
blue-core = { path = "crates/blue-core" }
|
|
blue-mcp = { path = "crates/blue-mcp" }
|