blue/crates/blue-mcp/src/handlers/mod.rs
Eric Garcia fae8e96108 feat: implement RFC 0012 alignment dialogue orchestration
Add blue_alignment_play MCP tool for multi-expert deliberation:
- Core alignment module with Expert, Round, ExpertResponse types
- Panel templates: Infrastructure, Product, ML, Governance, General
- Ollama integration for running expert rounds until convergence
- Dialogue markdown generation with SQLite tracking
- RFC linking support

Also removes dead code (ADR 0010: No Dead Code).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 20:14:13 -05:00

30 lines
677 B
Rust

//! Tool handlers for Blue MCP
//!
//! Each module handles a specific document type or workflow.
pub mod adr;
pub mod alignment; // RFC 0012: Alignment Dialogue Orchestration
pub mod audit; // Health check (blue_health_check)
pub mod audit_doc; // Audit documents (blue_audit_create, etc.)
pub mod decision;
pub mod index; // Semantic index (RFC 0010)
pub mod delete;
pub mod dialogue;
pub mod dialogue_lint;
pub mod env;
pub mod guide;
pub mod lint;
pub mod llm;
pub mod playwright;
pub mod postmortem;
pub mod pr;
pub mod prd;
pub mod realm;
pub mod release;
pub mod reminder;
pub mod rfc;
pub mod runbook;
pub mod session;
pub mod spike;
pub mod staging;
pub mod worktree;