run_audit_mode
Assess and optimize Chromium ARM64 Browser performance by executing a comprehensive audit mode, enabling detailed analysis for web testing, navigation, and automation tasks.
Instructions
Run comprehensive audit mode for optimization
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:1061-1081 (handler)The core handler function for the 'run_audit_mode' tool. It orchestrates multiple individual audits (accessibility, performance, SEO, best practices, Next.js) and compiles a comprehensive summary and full report.async runAuditMode() { const results = {}; results.accessibility = await this.runAccessibilityAudit(); results.performance = await this.runPerformanceAudit(); results.seo = await this.runSEOAudit(); results.bestPractices = await this.runBestPracticesAudit(); results.nextjs = await this.runNextJSAudit(); const summary = Object.entries(results) .map(([category, result]) => `${category}: ${result.isError ? 'FAILED' : 'COMPLETED'}`) .join('\\n'); const fullReport = Object.entries(results) .map(([category, result]) => `\\n=== ${category.toUpperCase()} ===\\n${result.content[0].text}`) .join('\\n'); return { content: [{ type: 'text', text: `Comprehensive Audit Mode Results:\\n\\nSUMMARY:\\n${summary}\\n\\nFULL REPORT:${fullReport}` }], }; }
- index.js:327-334 (schema)Schema definition for the 'run_audit_mode' tool, including name, description, and empty input schema (no parameters required).{ name: 'run_audit_mode', description: 'Run comprehensive audit mode for optimization', inputSchema: { type: 'object', properties: {}, }, },
- index.js:391-392 (registration)Registration in the CallToolRequestSchema switch statement that dispatches calls to the runAuditMode handler.case 'run_audit_mode': return await this.runAuditMode();