//#region extensions/crypto/src/commands/doctor-command.d.ts /** * /doctor command — comprehensive diagnostic check for OpenClawnch. * * Inspired by ZeroClaw's `zeroclaw doctor` and `zeroclaw channel doctor`. * Checks: wallet connectivity, RPC health, API key validity, channel auth, * plan scheduler state, endpoint allowlist, and credential vault status. * * Zero-cost: bypasses the LLM entirely for instant results. */ declare const doctorCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; //#endregion export { doctorCommand }; //# sourceMappingURL=doctor-command.d.mts.map