/** * Monoswarm MCP Tools for CLI * * Merged replacement for the former swarm-tools.ts + hive-mind-tools.ts. * Every tool here does one of two things: read/write a single JSON state * file (`.monomind/monoswarm/state.json`), or tally votes already recorded * in that file against a threshold. Nothing here starts a process, thread, * or network connection — real concurrent work happens only when the caller * separately dispatches subagents with Claude Code's Task tool. * * This is a clean break, not a migration: the old `.monomind/swarm/` and * `.monomind/hive-mind/` state files are abandoned in place (a later cleanup * phase purges them) rather than imported here. */ import { type MCPTool } from './types.js'; export declare const monoswarmTools: MCPTool[]; //# sourceMappingURL=monoswarm-tools.d.ts.map