/** * Example integration of Playbook Registry with SuperAudit Task * * This file demonstrates how to integrate the playbook registry * into the main analyze task for enhanced playbook management. */ import type { Rule } from "../types.js"; /** * Initialize the registry with builtin playbooks and Lighthouse */ export declare function initializePlaybookRegistry(): Promise; /** * Enhanced version of determineAnalysisRules that uses the registry */ export declare function determineAnalysisRulesWithRegistry(args: any, basicRules: Rule[], advancedRules: Rule[]): Promise<{ rules: Rule[]; analysisMode: string; }>; /** * Register playbooks from a project directory */ export declare function registerProjectPlaybooks(projectRoot: string): Promise; /** * Show playbook information */ export declare function showPlaybookInfo(playbookId: string): void; /** * Example of how to integrate into task definition */ export declare function exampleTaskIntegration(): void; //# sourceMappingURL=registry-integration.d.ts.map