#!/usr/bin/env node /** * Minimal pi-loom operator CLI. * * This is intentionally a thin shell over LoomStore and buildLoomContext. The * MCP server keeps the existing `pi-loom` bin; this CLI is published as * `pi-loom-cli` to avoid breaking current MCP configurations. */ interface CliIO { stdout: (text: string) => void; stderr: (text: string) => void; } export declare function runCli(argv?: string[], io?: CliIO): Promise; export {};