#!/usr/bin/env node /** * context-mode CLI * * Usage: * context-mode → Start MCP server (stdio) * context-mode doctor → Diagnose runtime issues, hooks, FTS5, version * context-mode upgrade → Fix hooks, permissions, and settings * context-mode hook → Dispatch a hook script (used by platform hook configs) * * Platform auto-detection: CLI detects which platform is running * (Claude Code, Gemini CLI, OpenCode, etc.) and uses the appropriate adapter. */ /** Normalize Windows backslash paths to forward slashes for Bash (MSYS2) compatibility. */ export declare function toUnixPath(p: string): string;