UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

24 lines 761 B
export interface ReviewCommandOptions { baseDir?: string; configPath?: string; agentcli?: string; passThroughArgs?: string[]; setupWorktree?: boolean; multiAgent?: boolean; patterns?: string[]; parallel?: number; outputDir?: string; } export interface ReviewContext { worktreePath: string; prNumber?: string; reviewType: 'pr' | 'document' | 'branch'; reviewTarget: string; outputDir: string; } export { parseReviewTarget, renderReviewTemplate, executeReviewCommand } from './review.js'; /** * Enhanced review command with multi-agent support */ export declare function runEnhancedReviewCommand(args: string[], options?: ReviewCommandOptions): Promise<void>; //# sourceMappingURL=review-enhanced.d.ts.map