vercel-debug-bundle

Solid

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

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

# Vercel Debug Bundle ## Overview Collect a comprehensive debug bundle containing deployment state, function logs, environment configuration, and build output for Vercel support escalation or team troubleshooting. ## Current State !`vercel --version 2>/dev/null || echo 'Vercel CLI not installed'` !`node --version 2>/dev/null || echo 'Node.js N/A'` ## Prerequisites - Vercel CLI installed and authenticated - Access to the affected deployment - `jq` for JSON processing (recommended) ## Instructions ### Step 1: Collect Deployment Information ```bash #!/usr/bin/env bash set -euo pipefail DEPLOY_URL="${1:-$(vercel ls --json 2>/dev/null | jq -r '.[0].url')}" BUNDLE_DIR="vercel-debug-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE_DIR" echo "=== Collecting debug bundle for: $DEPLOY_URL ===" # Deployment inspection vercel inspect "$DEPLOY_URL" > "$BUNDLE_DIR/inspect.txt" 2>&1 || true # Deployment details via API curl -s -H "Authorization: Bearer $VERCEL_TOKEN" \ "https://api.vercel.com/v13/deployments/$DEPLOY_URL" \ | jq '{uid, name, state, target, readyState, errorMessage, meta, regions}' \ > "$BUNDLE_DIR/deployment.json" 2>/dev/null || true ``` ### Step 2: Collect Function Logs ```bash # Recent function logs (last 100 entries) vercel logs "$DEPLOY_URL" --output=short --limit=100 \ > "$BUNDLE_DIR/function-logs.txt" 2>&1 || true # Function logs via API with filtering curl -s -H "Authorization: Bearer $VERCEL_TOKEN" \ "https://api.vercel.com/v2/deployments/$DEPLOY_URL/ev...

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

elevenlabs-debug-bundle

Collect ElevenLabs debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for ElevenLabs problems. Trigger: "elevenlabs debug", "elevenlabs support bundle", "collect elevenlabs logs", "elevenlabs diagnostic", "elevenlabs support ticket".

2,266 Updated today
jeremylongshore
AI & Automation Featured

obsidian-debug-bundle

Collect Obsidian plugin debug evidence for support and troubleshooting. Use when encountering persistent issues, preparing bug reports, or collecting diagnostic information for plugin problems. Trigger with phrases like "obsidian debug", "obsidian diagnostic", "collect obsidian logs", "obsidian support bundle".

2,266 Updated today
jeremylongshore
AI & Automation Featured

groq-debug-bundle

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-debug-bundle

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-debug-bundle

Collect Clay debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Clay integration problems. Trigger with phrases like "clay debug", "clay support bundle", "collect clay logs", "clay diagnostic", "clay support ticket".

2,266 Updated today
jeremylongshore