# Credits & Acknowledgments This skill is built on Salesforce's official Apex debugging documentation and established Apex performance patterns. The benchmarking techniques, governor limit patterns, and optimization approaches incorporated here reflect current Apex development best practices. --- ## Key Patterns ### Governor Limit Awareness Governor limit values, debug log event types, and the Apex execution model are defined by the Salesforce platform and reflected in `references/debug-log-reference.md`. ### Debug Log Specifications Log event specifications, log level definitions, and format documentation are based on official Apex debug log behavior and integrated into `references/debug-log-reference.md`. ### Benchmarking Patterns String-building performance characteristics, loop iteration comparisons, and data structure lookup benchmarks reflect well-established Apex optimization techniques adapted into the reusable templates in this skill. --- ## License MIT licensed. See the LICENSE file for complete terms.