sf-debug

jaganpro/sf-skills · updated Apr 8, 2026

$npx skills add https://github.com/jaganpro/sf-skills --skill sf-debug
0 commentsdiscussion
summary

Use this skill when the user needs root-cause analysis from debug logs: governor-limit diagnosis, stack-trace interpretation, slow-query investigation, heap / CPU pressure analysis, or a reproduction-to-fix loop based on log evidence.

skill.md

sf-debug: Salesforce Debug Log Analysis & Troubleshooting

Use this skill when the user needs root-cause analysis from debug logs: governor-limit diagnosis, stack-trace interpretation, slow-query investigation, heap / CPU pressure analysis, or a reproduction-to-fix loop based on log evidence.

When This Skill Owns the Task

Use sf-debug when the work involves:

  • .log files from Salesforce
  • stack traces and exception analysis
  • governor limits
  • SOQL / DML / CPU / heap troubleshooting
  • query-plan or performance evidence extracted from logs

Delegate elsewhere when the user is:


Required Context to Gather First

Ask for or infer:

  • org alias
  • failing transaction / user flow / test name
  • approximate timestamp or transaction window
  • user / record / request ID if known
  • whether the goal is diagnosis only or diagnosis + fix loop

Recommended Workflow

1. Retrieve logs

sf apex list log --target-org <alias> --json
sf apex get log --log-id <id> --target-org <alias>
sf apex tail log --target-org <alias> --color

2. Analyze in this order

  1. entry point and transaction type
  2. exceptions / fatal errors
  3. governor limits
  4. repeated SOQL / DML patterns
  5. CPU / heap hotspots
  6. callout timing and external failures

3. Classify severity

  • Critical — runtime failure, hard limit, corruption risk
  • Warning — near-limit, non-selective query, slow path
  • Info — optimization opportunity or hygiene issue

4. Recommend the smallest correct fix

Prefer fixes that are:

  • root-cause oriented
  • bulk-safe
  • testable
  • easy to verify with a rerun

Expanded workflow: references/analysis-playbook.md


High-Signal Issue Patterns

Issue Primary signal Default fix direction
SOQL in loop repeating SOQL_EXECUTE_BEGIN in a repeated call path query once, use maps / grouped collections
DML in loop repeated DML_BEGIN patterns collect rows, bulk DML once
Non-selective query high rows scanned / poor selectivity add indexed filters, reduce scope
CPU pressure CPU usage approaching sync limit reduce algorithmic complexity, cache, async where valid
Heap pressure heap usage approaching sync limit stream with SOQL for-loops, reduce in-memory data
Null pointer / fatal error EXCEPTION_THROWN / FATAL_ERROR guard null assumptions, fix empty-query handling

Expanded examples: references/common-issues.md


Output Format

When finishing analysis, report in this order:

  1. What failed
  2. Where it failed (class / method / line / transaction stage)
  3. Why it failed (root cause, not just symptom)
  4. How severe it is
  5. Recommended fix
  6. Verification step

Suggested shape:

Issue: <summary>
Location: <class / line / transaction>
Root cause: <explanation>
Severity: Critical | Warning | Info
Fix: <specific action>
Verify: <test or rerun step>

Cross-Skill Integration

Need Delegate to Reason
Implement Apex fix sf-apex code change generation / review
Reproduce via tests sf-testing test execution and coverage loop
Deploy fix sf-deploy deployment orchestration
Create debugging data sf-data targeted seed / repro data

Reference Map

Start here

Deep references

Rubric


Score Guide

Score Meaning
90+ Expert analysis with strong fix guidance
80–89 Good analysis with minor gaps
70–79 Acceptable but may miss secondary issues
60–69 Partial diagnosis only
< 60 Incomplete analysis

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.472 reviews
  • Isabella Haddad· Dec 28, 2024

    sf-debug reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Min Haddad· Dec 20, 2024

    Solid pick for teams standardizing on skills: sf-debug is focused, and the summary matches what you get after install.

  • Dhruvi Jain· Dec 16, 2024

    sf-debug fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Mateo Mensah· Dec 16, 2024

    sf-debug is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Nia White· Dec 12, 2024

    sf-debug is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Luis Huang· Dec 4, 2024

    sf-debug fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Anaya Tandon· Dec 4, 2024

    I recommend sf-debug for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Min Khan· Nov 23, 2024

    Registry listing for sf-debug matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Camila Choi· Nov 23, 2024

    Keeps context tight: sf-debug is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Nikhil Torres· Nov 19, 2024

    We added sf-debug from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

showing 1-10 of 72

1 / 8