What problem does it solve? Salesforce debug logs are dense and hard to interpret, making it difficult to find the root cause of governor limit failures, exceptions, and slow transactions. This Skill turns raw log evidence into a structured diagnosis with severity classification and concrete fix recommendations. ## Core Features & Use Cases - Governor Limit Diagnosis: Detects SOQL, DML, CPU, and heap limit consumption from LIMIT_USAGE events, with sync vs async threshold awareness. - Pattern Detection: Identifies SOQL-in-loop, DML-in-loop, non-selective queries, and null pointer exceptions from log event signatures. - Structured Reporting: Produces a six-field report (what, where, why, severity, fix, verification) scored against a 100-point rubric. - Use Case: A trigger fails in production with 'Too many SOQL queries: 101'. Retrieve the log with sf CLI, and the Skill traces the repeating SOQL_EXECUTE_BEGIN events back to the loop in AccountTriggerHandler, classifies it as Critical, and recommends a Map-based bulk query fix. ## Quick Start Ask the AI to analyze the latest debug log from your Salesforce org for governor limit issues and root causes.