replit-debug-bundle

Featured

Collect Replit diagnostic info for debugging deployments, workspace issues, and support tickets. Use when encountering persistent issues, preparing support tickets, or collecting system state for troubleshooting Replit problems. Trigger with phrases like "replit debug", "replit support bundle", "collect replit logs", "replit diagnostic", "replit troubleshoot".

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

# Replit Debug Bundle ## Current State !`node --version 2>/dev/null || echo 'Node: N/A'` !`python3 --version 2>/dev/null || echo 'Python: N/A'` !`echo "REPL_SLUG=$REPL_SLUG REPL_OWNER=$REPL_OWNER" 2>/dev/null || echo 'Not on Replit'` ## Overview Collect all diagnostic information needed to debug Replit workspace, deployment, and database issues. Produces a redacted evidence bundle safe for sharing with Replit support. ## Prerequisites - Shell access in Replit Workspace - Permission to read logs and configuration - Access to deployment monitoring (if deployed) ## Instructions ### Step 1: Automated Debug Bundle Script ```bash #!/bin/bash set -euo pipefail # replit-debug-bundle.sh BUNDLE="replit-debug-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE"/{env,db,config,network,packages} echo "=== Replit Debug Bundle ===" > "$BUNDLE/summary.txt" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$BUNDLE/summary.txt" echo "" >> "$BUNDLE/summary.txt" # 1. Environment info echo "--- Runtime ---" >> "$BUNDLE/env/runtime.txt" node --version >> "$BUNDLE/env/runtime.txt" 2>&1 || echo "Node: N/A" >> "$BUNDLE/env/runtime.txt" python3 --version >> "$BUNDLE/env/runtime.txt" 2>&1 || echo "Python: N/A" >> "$BUNDLE/env/runtime.txt" uname -a >> "$BUNDLE/env/runtime.txt" # 2. Replit environment variables (safe ones only) echo "--- Replit Env ---" >> "$BUNDLE/env/replit-vars.txt" echo "REPL_SLUG=$REPL_SLUG" >> "$BUNDLE/env/replit-vars.txt" echo "REPL_OWNER=$REPL_OWNER" >> "$BUNDLE/env/replit-vars...

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

databricks-debug-bundle

Collect Databricks debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Databricks problems. Trigger with phrases like "databricks debug", "databricks support bundle", "collect databricks logs", "databricks 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

perplexity-debug-bundle

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

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