salesforce-debug-bundle

Featured

Collect Salesforce debug evidence including API limits, debug logs, and org info for support tickets. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Salesforce problems. Trigger with phrases like "salesforce debug", "salesforce support bundle", "collect salesforce logs", "salesforce diagnostic", "salesforce debug log".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Salesforce Debug Bundle ## Overview Collect all necessary diagnostic information for Salesforce issues: debug logs, API limits, org configuration, and error traces. ## Prerequisites - Salesforce CLI authenticated (`sf org login web`) - jsforce connection configured - Access to Setup in your Salesforce org ## Instructions ### Step 1: Collect Org Info & API Limits ```typescript import { getConnection } from './salesforce/connection'; const conn = await getConnection(); // Org limits — most critical diagnostic info const limits = await conn.request('/services/data/v59.0/limits/'); console.log('=== API Limits ==='); console.log(`Daily API Requests: ${limits.DailyApiRequests.Remaining}/${limits.DailyApiRequests.Max}`); console.log(`Daily Bulk API: ${limits.DailyBulkV2QueryJobs.Remaining}/${limits.DailyBulkV2QueryJobs.Max}`); console.log(`Data Storage (MB): ${limits.DataStorageMB.Remaining}/${limits.DataStorageMB.Max}`); console.log(`File Storage (MB): ${limits.FileStorageMB.Remaining}/${limits.FileStorageMB.Max}`); console.log(`Single Email: ${limits.SingleEmail.Remaining}/${limits.SingleEmail.Max}`); // Org identity const identity = await conn.identity(); console.log(`\n=== Org Info ===`); console.log(`Username: ${identity.username}`); console.log(`Org ID: ${identity.organization_id}`); console.log(`Instance: ${conn.instanceUrl}`); console.log(`API Version: ${conn.version}`); ``` ### Step 2: Enable & Retrieve Debug Logs ```bash # Set up a trace flag for debug logging vi...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

salesloft-debug-bundle

Collect SalesLoft debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic info for SalesLoft API problems. Trigger: "salesloft debug", "salesloft diagnostic", "salesloft support bundle".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-advanced-troubleshooting

Apply Salesforce advanced debugging with debug logs, SOQL query plans, and EventLogFile analysis. Use when standard troubleshooting fails, investigating SOQL performance issues, or analyzing Apex governor limit violations. Trigger with phrases like "salesforce hard bug", "salesforce debug log", "salesforce governor limit", "salesforce query plan", "salesforce deep debug", "SOQL slow".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-debug-bundle

Collect Webflow debug evidence for support tickets and troubleshooting. Gathers SDK version, token validation, rate limit status, site connectivity, CMS health, and error logs into a single diagnostic bundle. Trigger with phrases like "webflow debug", "webflow support bundle", "collect webflow logs", "webflow diagnostic", "webflow troubleshoot".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-debug-bundle

Collect HubSpot debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for HubSpot API problems. Trigger with phrases like "hubspot debug", "hubspot support bundle", "collect hubspot logs", "hubspot diagnostic", "hubspot correlation id".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-debug-bundle

Collect Shopify debug evidence including API versions, scopes, rate limit state, and request logs. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Shopify problems. Trigger with phrases like "shopify debug", "shopify support bundle", "collect shopify logs", "shopify diagnostic".

2,266 Updated today
jeremylongshore