//#region extensions/crypto/src/commands/molten-command.d.ts /** * /molten command — quick Molten status check. * * Shows agent profile, claim status, and conversation count. * If not configured, shows setup instructions. * * Uses the real Molten API at api.molten.gg/api/v1. */ declare const moltenCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (_ctx: any) => Promise<{ text: string; }>; }; //#endregion export { moltenCommand }; //# sourceMappingURL=molten-command.d.mts.map