// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2026 Mark Wells <contact@markwells.dev>
/// Diagnostics pipeline for PostToolUse hook requests.
/// Manages document lifecycle and sync between disk and LSP servers.
/// Glob tool handler: unified file/directory/pattern browsing.
/// Single authority for file classification (binary, language ID, shebang).
/// Grep tool: ripgrep + workspace/symbol pipeline with LSP enrichment.
/// Maps MCP tool calls to LSP requests.
/// Application dispatch for hook requests.
/// Path validation for LSP-aware operations and config file protection.
/// Shared symbol types and helpers for handler and file_tools.
/// Transformation layer trait between protocol boundaries and LSP.
/// Shared container for tool servers and cross-tool infrastructure.
pub use DiagnosticsServer;
pub use ;
pub use McpRouter;
pub use HookRouter;
pub use PathValidator;
pub use ToolServer;