Add 4 tools: - blue_postmortem_create: Create post-mortem documents for incident tracking - blue_postmortem_action_to_rfc: Convert post-mortem action items to RFCs - blue_runbook_create: Create runbook documents for operations - blue_runbook_update: Update runbooks with new operations/troubleshooting Also adds DocType::Postmortem and DocType::Runbook to blue-core. Total: 54 tools ported from coherence-mcp Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
424 B
Rust
24 lines
424 B
Rust
//! Tool handlers for Blue MCP
|
|
//!
|
|
//! Each module handles a specific document type or workflow.
|
|
|
|
pub mod adr;
|
|
pub mod audit;
|
|
pub mod decision;
|
|
pub mod dialogue;
|
|
pub mod dialogue_lint;
|
|
pub mod env;
|
|
pub mod guide;
|
|
pub mod lint;
|
|
pub mod playwright;
|
|
pub mod postmortem;
|
|
pub mod pr;
|
|
pub mod prd;
|
|
pub mod release;
|
|
pub mod reminder;
|
|
pub mod rfc;
|
|
pub mod runbook;
|
|
pub mod session;
|
|
pub mod spike;
|
|
pub mod staging;
|
|
pub mod worktree;
|