/** * `openlore features` — the single answer to "what's on, and how do I turn on * the rest?" (change: refine-happy-path-and-defaults / ZeroConfigWithGuidedActivation). * * OpenLore needs ZERO config keys for core value. Everything beyond the core is an * independent opt-in feature, each gated by a config block or an on-disk marker. * This command reports every opt-in feature's current state and the ONE command or * config snippet that activates it — so a user never has to grep 44 docs to find * where to turn something on. Deterministic, local, no LLM, no network. * * Detection lives in the shared `collectFeatureInventory()` so the CLI, `doctor`, * and a future MCP tool stay in parity over one source of truth. */ import { Command } from 'commander'; export declare const featuresCommand: Command; //# sourceMappingURL=features.d.ts.map