void-cmd
Version:
AI-powered CLI tool that converts natural language to shell commands using Cerebras API
12 lines (11 loc) • 363 B
TypeScript
import { Command, CommandOptions } from '../types';
export declare class ExplainCommand implements Command {
name: string;
description: string;
private cerebrasService?;
private getCerebrasService;
execute(options: CommandOptions): Promise<void>;
private showAnalysisMenu;
private executeCommand;
private getDetailedExplanation;
}