Install
openclaw skills install review-evoSelf-improving code reviewer that learns your codebase over time. Analyzes git history, spots patterns, identifies risk — and gets smarter every run.
openclaw skills install review-evoA self-improving code reviewer. It analyzes your git history, identifies risk hotspots, learns your team's conventions, and builds a persistent knowledge base that sharpens every review.
No external services. No API keys. No dependencies. It uses git and the agent's built-in tools — nothing else.
Follow these steps in order. Complete each step fully before moving to the next.
Verify git is available:
git --version and confirm outputThe user must be inside a git repository with at least 20 commits of history. Run git rev-list --count HEAD to confirm. If fewer than 20 commits, warn the user that analysis will be limited but can still proceed.
Check if this project has been reviewed before:
ls .review-evo/learnings.md 2>/dev/null
If the file exists: Read .review-evo/learnings.md in full. This contains findings from prior runs. Reference these throughout the review — confirm resolved issues, track recurring patterns, and build on previous analysis. Tell the user: "I found learnings from a previous review. I'll build on those."
If the file does not exist: This is a first run. Tell the user you'll create the knowledge base after analysis.
Then detect the project setup by checking for these files in the repo root:
tsconfig.json → TypeScriptpackage.json → Node.js (read scripts for build/test/lint commands)requirements.txt or pyproject.toml → Pythongo.mod → GoCargo.toml → Rustpom.xml or build.gradle → JavaReport what you found and confirm with the user.
Run each of these commands and capture the output. Do not summarize prematurely — collect all data before drawing conclusions.
Recent activity (last 50 commits):
git log --oneline -50
Contributor breakdown:
git log --since="6 months ago" --format="%an" | sort | uniq -c | sort -rn
High-churn files (most frequently modified):
git log --since="3 months ago" --diff-filter=M --name-only --pretty=format: | sort | uniq -c | sort -rn | head -25
Large recent diffs (potential complexity bombs):
git log --since="1 month ago" --pretty=format:"%h %s" --shortstat | head -60
Files with the most authors (knowledge-spread risk):
git log --since="6 months ago" --pretty=format:"%an" --name-only | awk '/^$/{next} !author{author=$0;next} {files[author][$0]++; allfiles[$0]++} END{for(f in allfiles) {n=0; for(a in files) if(f in files[a]) n++; if(n>1) print n,f}}' | sort -rn | head -15
If the awk command fails on the platform, fall back to:
git log --since="6 months ago" --format="%an" --name-only | head -200
and manually count distinct authors per file from the output.
Using the data from Step 2, analyze and report on each of these dimensions:
Files modified more than 5 times in 3 months are hotspots. For each one:
*.test.*, *.spec.*, or test_* files)From the recent commits and file contents, identify:
Flag any of these:
git log -1 --format=%cr on lines containing them)Also identify what the codebase does well:
Ask the user what they want reviewed:
What would you like me to focus on? (a) Full codebase health report (b) A specific branch or PR diff (provide branch name) (c) Current working changes (
git diff) (d) A specific file or directory
Compile all findings from Step 3 into a structured report with sections: Hotspots, Risks, Conventions, Strengths, and Recommendations. Rank findings by severity (critical, warning, info).
Run git diff main...{branch} (or the appropriate target branch). Analyze the diff through the lens of the patterns found in Step 3. Flag deviations from conventions, new risk introductions, and missing test coverage for changed code.
Run git diff and git diff --cached. Apply the same analysis as option (b).
Read the specified files. Analyze against the patterns and conventions discovered. Provide focused, actionable feedback.
For all options, structure each finding as:
After delivering the review, persist findings for future runs.
Create the directory if it doesn't exist:
mkdir -p .review-evo
Write (or append to) .review-evo/learnings.md with the following structure:
## Review — {YYYY-MM-DD}
### Project Profile
- Language: {detected}
- Key patterns: {conventions found}
- Active contributors: {count}
### Hotspots
{list of high-churn files with context}
### Recurring Patterns
{patterns that appeared in this and prior reviews}
### Resolved
{items from prior reviews that are no longer flagged}
### Open Risks
{current findings ranked by severity}
If the file already exists, append the new review section. Do not overwrite prior entries — the history is the value.
Tell the user: "Learnings saved. Next time I review this project, I'll build on these findings."
Also recommend adding .review-evo/ to the project's .gitignore if it's not already there — these are local analysis artifacts, not source code.
--since flags keep queries bounded. If commands are still slow, narrow the date range.-- {path}.