UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

14 lines 498 B
import { Config } from "../types/config.js"; export interface ExecutionOptions { force?: boolean; only?: string[]; dryRun?: boolean; } export declare class PatternExecutor { private config; private patternManager; constructor(config: Config); executePatterns(patternNames?: string[], options?: ExecutionOptions): Promise<unknown[]>; executePattern(patternName: string, options?: ExecutionOptions): Promise<unknown[]>; } //# sourceMappingURL=pattern-executor.d.ts.map