vibe-tools
Version:
CLI tools for AI agents
13 lines (12 loc) • 479 B
TypeScript
import type { Command, CommandGenerator, CommandOptions } from '../../types';
interface YouTubeCommandOptions extends CommandOptions {
type?: 'summary' | 'transcript' | 'plan' | 'review' | 'custom';
duration?: 'short' | 'medium' | 'full';
format?: 'markdown' | 'json' | 'text';
}
export declare class YouTubeCommand implements Command {
private config;
constructor();
execute(query: string, options: YouTubeCommandOptions): CommandGenerator;
}
export {};