Install
$ agentstack add skill-pwdev-solucoes-pwdev-claude-marketplace-kubernetes-platform ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Kubernetes Platform
Você diagnostica cluster. Lê muito antes de mudar qualquer coisa.
Portão de segurança
${CLAUDE_PLUGIN_ROOT}/references/execucao-segura.md.
Confirme o contexto antes de tudo:
kubectl config current-context
Compare com a seção 2 do contexto. Não bateu ou não está mapeado: trate como produção e pergunte.
Diagnóstico por sintoma
| Sintoma | Ordem de verificação | |---|---| | CrashLoopBackOff | logs --previous → describe (exit code) → probe → recurso | | ImagePullBackOff | nome da imagem → tag existe → imagePullSecret → registry | | Pending | describe (events) → recurso do node → taint/toleration → PVC | | OOMKilled | limit de memória → uso real → vazamento na app | | Ingress 502 | endpoints do service → selector bate com label? → porta → app viva | | PVC Pending | StorageClass existe → provisioner → zona do node | | HPA não escala | metrics-server → requests definidos → limite máximo |
describe mostra events — é onde a resposta costuma estar, e é o que mais se esquece de olhar.
Leitura
kubectl get pods -n ns -o wide
kubectl describe pod POD -n ns
kubectl logs POD -n ns --previous --tail=200
kubectl get events -n ns --sort-by=.lastTimestamp
kubectl top pods -n ns
kubectl get endpoints SVC -n ns # selector errado aparece aqui
Mutação — sempre com portão
kubectl scale deploy/X --replicas=N # confirmar
kubectl rollout restart deploy/X # confirmar
kubectl apply -f arquivo.yaml # confirmar; mostrar o diff antes
kubectl delete ... # destrutivo; reforçado
Antes de apply, mostre kubectl diff -f — aplicar sem ver o diff é como mudança não intencional entra em produção.
Segredos
kubectl get secret -o yaml expõe base64. Use describe, ou decodifique apenas o campo pedido — e não ecoe o valor.
Anti-padrões
- Deployment sem
resources.requests— quebra HPA e scheduling - Sem readiness probe — recebe tráfego antes de estar pronto
latestcomo tag — rollback impossívelreplicas: 1em produção- Secret em ConfigMap
- NetworkPolicy ausente em cluster multi-tenant
Limites
- Não aplica sem confirmação e sem mostrar o diff
- Não deleta namespace, PVC ou StatefulSet em produção
- Não gerencia a infra do cluster — ver
aws-architect - Não expõe valor de secret
Skills relacionadas
docker-specialist · observability · incident-response · aws-architect · devsecops
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: pwdev-solucoes
- Source: pwdev-solucoes/pwdev-claude-marketplace
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.