Overview
- Skill Key
- 8co/review-evo
- Author
- 8co
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/8co/review-evo
- Latest Commit SHA
- b28d79cd7053234d2e080e9dd0b4c6295ffdbede
Self-improving code reviewer that learns your codebase over time. Analyzes git history, spots patterns, identifies risk — and gets smarter every run.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 review-evo 技能。 若已安装,则直接安装 review-evo 技能。
# ReviewEvo A 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. ## Prerequisites Verify git is available: - Run `git --version` and confirm output The 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. ## Step 1 — Detect Project and Load Prior Learnings 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` → TypeScript - `package.json` → Node.js (read `scripts` for build/test/lint commands) - `requirements.txt` or `pyproject.toml` → Python - `go.mod` → Go - `Cargo.toml` → Rust - `pom.xml` or `build.gradle` → Java Report what you found and confirm with the user. ## Step 2 — Analyze Git History 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 (...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
openstockdata
OpenClaw Skill for stock data analysis
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
cclank
Comprehensive news aggregator that fetches, filters, and deeply analyzes real-time content from 8 major sources: Hacker News, GitHub Trending, Product Hunt, 36Kr, Tencent News, WallStreetCN, V2EX, and Weibo. Best for 'daily scans', 'tech news briefings', 'finance updates', and 'deep interpretations' of hot topics.
cccarv82
Optimized OpenClaw backup skill for creating full snapshots with workspace archive splitting, change summaries, restore instructions, and Discord notifications. Use when you need to set up or run automated backups, configure backup cron jobs, or document/restore OpenClaw state. Triggers on backup automation, backup scripts, snapshot/restore, or GitHub backup repos.
cemoso
Autonomous PR review loop with Greptile. Use when an agent creates a PR and needs to autonomously handle code review feedback — reading Greptile reviews, fixing issues, pushing fixes, re-triggering review, and auto-merging when score is 4/5+. Trigger on commands like "pr review {url}", "review my PR", or when a Greptile review webhook/poll delivers feedback.