//#region extensions/crypto/src/commands/tools-command.d.ts /** * Tools commands — list, inspect, enable, disable, and delete user-defined tools. * * /tools — List all user-defined tools (default action) * /tools list — Same as above * /tools info — Show details for a specific user tool * /tools enable — Enable a disabled user tool * /tools disable — Disable a user tool (keeps definition, stops execution) * /tools delete — Delete a user tool permanently * * Tool creation is done via the LLM (natural language) — the agent calls * UserToolService.create() based on user intent. This command is for * management only. */ declare const toolsCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { toolsCommand }; //# sourceMappingURL=tools-command.d.mts.map