/** * Monodesign MCP Tools * * Exposes the monodesign subsystem (anti-pattern detection, auto-fix, OKLCH * palette seeds) as MCP tools so agents on every platform (Claude Code, Kimi * Code, Antigravity, opencode) can use them natively — previously CLI-only * (`monomind design detect|fix|palette`), which made the subsystem invisible * on MCP-driven platforms. * * - monodesign_palette: pure TS — the 129-seed OKLCH library from * commands/design-palette.ts (no engine, no subprocess). * - monodesign_detect: in-process engine — the bundled monodesign engine's * detectText/walkDir run in this process; no CLI spawn. * - monodesign_fix: bounded subprocess — the bundled monodesign CLI's `fix` * codemod (no programmatic fix API exists), always supporting --dry-run. */ import type { MCPTool } from './types.js'; export declare const monodesignTools: MCPTool[]; //# sourceMappingURL=monodesign-tools.d.ts.map