hierarchical
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Hierarchical Project Review
Context
- Project root: !
pwd - Directory structure: !
find . -type f -name "*.py" 2>/dev/null | head -50 - Tech stack: [detect dynamically based on project files]
- Test framework: [detect dynamically based on project files]
- Total files: !
find . -type f -name "*.py" 2>/dev/null | wc -l
Phase 1: Determine Review Scope
Goal: Identify the project directory to review.
Actions:
- Check review scope in this order:
- User argument: If
$ARGUMENTSspecifies a directory, review that directory recursively - Current directory: If no argument, review the current project root (
.)
- User argument: If
- Confirm scope with user if the project is large (>100 files) to potentially limit scope.