code-validation
Installation
SKILL.md
Code Validation
Validates code changes through automated scanning and LLM-guided heuristics to detect:
- Test disabling patterns (skip, only, todo)
- Secret exposure (hardcoded credentials, API keys)
- Path portability issues (user-specific paths)
- Dangerous security flags
- Large deletions
- Dependency/import changes
- Broad exception handling
When to Use
Execute code-validation as part of QA validation protocol:
- After Action Agent completes implementation
- Before approving changes for merge
- When reviewing diffs for red flags
- During final validation phase