replit-advanced-troubleshooting

Featured

Debug hard Replit issues: container lifecycle, Nix build failures, deployment crashes, and memory leaks. Use when standard troubleshooting fails, investigating intermittent failures, or diagnosing complex Replit platform behavior. Trigger with phrases like "replit hard bug", "replit mystery error", "replit impossible to debug", "replit intermittent", "replit deep debug".

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 Advanced Troubleshooting ## Overview Deep debugging techniques for complex Replit issues that resist standard troubleshooting. Covers container lifecycle problems, Nix environment failures, deployment crash loops, memory leaks in constrained containers, and isolating Replit platform vs application issues. ## Prerequisites - Shell access in Replit Workspace - Understanding of Replit container lifecycle - Ability to read deployment logs - Familiarity with `.replit` and `replit.nix` ## Instructions ### Step 1: Systematic Issue Isolation ```bash #!/bin/bash set -euo pipefail # replit-diagnose.sh — Layer-by-layer diagnosis echo "=== Replit Diagnostic ===" # Layer 1: Platform status echo -n "1. Platform: " curl -s https://status.replit.com/api/v2/summary.json | \ python3 -c "import sys,json;print(json.load(sys.stdin)['status']['description'])" 2>/dev/null || \ echo "UNKNOWN (check status.replit.com)" # Layer 2: Nix environment echo -n "2. Nix: " if [ -f replit.nix ]; then echo "configured" nix-env -qaP 2>/dev/null | head -3 || echo "(nix-env not in path)" else echo "NO replit.nix found" fi # Layer 3: Runtime echo -n "3. Node: " node --version 2>/dev/null || echo "N/A" echo -n " Python: " python3 --version 2>/dev/null || echo "N/A" # Layer 4: Dependencies echo "4. Dependencies:" npm list --depth=0 2>/dev/null | head -10 || echo " npm: N/A" pip list 2>/dev/null | head -5 || echo " pip: N/A" # Layer 5: Environment echo "5. Environment:" echo " REPL...

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

replit-common-errors

Diagnose and fix the top Replit errors: container sleep, port binding, Nix failures, DB limits. Use when encountering Replit errors, debugging failed deployments, or troubleshooting workspace and hosting issues. Trigger with phrases like "replit error", "fix replit", "replit not working", "debug replit", "replit broken", "replit deploy failed".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-debug-bundle

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-performance-tuning

Optimize Replit app performance: cold start, memory, Nix caching, and deployment speed. Use when experiencing slow startup, high memory usage, deployment timeouts, or optimizing Replit container resource usage. Trigger with phrases like "replit performance", "optimize replit", "replit slow", "replit cold start", "replit memory", "replit startup time".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-incident-runbook

Execute Replit incident response: triage deployment failures, database issues, and platform outages. Use when responding to Replit-related outages, investigating deployment crashes, or running post-incident reviews for Replit app failures. Trigger with phrases like "replit incident", "replit outage", "replit down", "replit emergency", "replit broken", "replit crash".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-known-pitfalls

Avoid the top Replit anti-patterns: ephemeral filesystem, public secrets, port binding, Nix gotchas, and database limits. Use when reviewing Replit code, onboarding developers, or auditing existing Replit apps for common mistakes. Trigger with phrases like "replit mistakes", "replit anti-patterns", "replit pitfalls", "replit what not to do", "replit code review".

2,266 Updated today
jeremylongshore