install
source · Clone the upstream repo
git clone https://github.com/MacPhobos/research-mind
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/MacPhobos/research-mind "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/universal-infrastructure-kubernetes" ~/.claude/skills/macphobos-research-mind-universal-infrastructure-kubernetes && rm -rf "$T"
manifest:
.claude/skills/universal-infrastructure-kubernetes/skill.mdsource content
Kubernetes
Quick Start (kubectl)
kubectl describe pod/<pod> -n <ns> kubectl get events -n <ns> --sort-by=.lastTimestamp | tail -n 30 kubectl logs pod/<pod> -n <ns> --previous --tail=200
Production Minimums
- Health:
andreadinessProbe
for safe rolloutsstartupProbe - Resources: set
/requests
to prevent noisy-neighbor failureslimits - Security: run as non-root and grant least privilege
Load Next (References)
— choose the right workload/controller and service typereferences/core-objects.md
— probes, rollouts, graceful shutdown, rollbackreferences/rollouts-and-probes.md
— common failure modes and a fast triage flowreferences/debugging-runbook.md
— pod security, RBAC, network policy, supply chainreferences/security-hardening.md