UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

20 lines 773 B
import { Config, Pattern } from '../types/config.js'; import { AgentTask } from '../types/agent.js'; export interface PatternExecutionOptions { dryRun?: boolean; maxAgents?: number; } export declare class PatternManager { private fileMatcher; private contentMatcher; executePatterns(patterns: Pattern[], config: Config, options?: PatternExecutionOptions): Promise<any[]>; prepareTasks(patterns: Pattern[], config: Config): Promise<AgentTask[]>; private preparePatternTasks; private createTask; private getMatchedFiles; private getContentMatches; private printDryRun; validatePattern(pattern: Pattern): string[]; findPatterns(config: Config, names: string[]): Pattern[]; } //# sourceMappingURL=pattern-manager-old.d.ts.map