| name | code-review |
| description | Ruthless code review for Python, Kubernetes, and AWS. Hunts for downstream problems, security issues, and unnecessary complexity. Use on 'review', 'check', 'audit', 'what could go wrong'. |
Code Review Skill
Ruthless review focused on Python, Kubernetes, and AWS.
When to Use
- Review Python code for issues
- Audit Kubernetes manifests
- Check AWS infrastructure/IAM
- Find security vulnerabilities
- Spot performance problems
Python Red Flags
Immediate
Performance
Kubernetes Red Flags
Security
Reliability
AWS Red Flags
IAM
Infrastructure
Output Format
CRITICAL: [issue]
Impact: [what breaks]
Fix: [action]
WARNING: [issue]
Risk: [consequence]
Consider: [alternative]
SMELL: [issue]
Cost: [future pain]
Questions to Ask
- What happens when this pod/lambda fails?
- What happens at 10x traffic?
- What's the blast radius if credentials leak?
- What breaks during a rolling update?
- What costs money when idle?