goodvibes-codebase-review
Installation
SKILL.md
Goodvibes Codebase Review & Remediation
Systematic codebase analysis with parallelized remediation using goodvibes agents.
CRITICAL: Be objective & completely honest. No sugar coating, EVER.
- Honest Review: Honest reviews yield better results. Never consider emotions or feelings in your assessments.
Filesystem Boundaries
CRITICAL: Write-local, read-global.
- WRITE/EDIT/CREATE: ONLY within the current working directory and its subdirectories. This is the project root. All changes must be git-trackable.
- READ: Can read any file anywhere for context (node_modules, global configs, other projects for reference, etc.)
- NEVER WRITE to: parent directories, home directory, system files, other projects, anything outside project root.
The working directory when you were spawned IS the project root. Stay within it for all modifications.