Skip to main content

infrastructure

Infrastructure debugging for Kubernetes and AWS. Use when investigating pod crashes, deployment issues, resource problems, container failures, or cloud infrastructure issues.

Jump to install

Source facts

Repository
incidentfox/incidentfox
Last source activity
February 26, 2026 at 19:47
Detected SKILL.md language
English
Stars
655
Forks
84

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
infrastructure
description
Infrastructure debugging for Kubernetes and AWS. Use when investigating pod crashes, deployment issues, resource problems, container failures, or cloud infrastructure issues.
# Infrastructure Debugging ## Available Domains ### Kubernetes For pod crashes, deployment issues, resource problems, container failures. Use: `/infrastructure-kubernetes` ### AWS For EC2, ECS, Lambda, and CloudWatch issues. Use: `/infrastructure-aws` ## Quick Reference ### Kubernetes Issues ```bash # List pods in namespace python .claude/skills/infrastructure-kubernetes/scripts/list_pods.py -n otel-demo # Get pod events (ALWAYS check first!) python .claude/skills/infrastructure-kubernetes/scripts/get_events.py <pod-name> -n otel-demo # Get pod logs python .claude/skills/infrastructure-kubernetes/scripts/get_logs.py <pod-name> -n otel-demo --tail 100 ``` ### Common Patterns | Symptom | First Action | Script | |---------|--------------|--------| | Pod CrashLoopBackOff | Check events | `get_events.py` | | Pod OOMKilled | Check resources | `get_resources.py` | | Pod Pending | Check events + nodes | `get_events.py` | | Deployment stuck | Check rollout history | `get_history.py` |
View on GitHub