一键导入
code-reviewer
Monitor codebase changes and generate standardized analysis documentation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Monitor codebase changes and generate standardized analysis documentation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Edit images in ComfyUI using Qwen 2.5VL with support for camera changes and image analysis
Invoke ComfyUI workflows to generate images, video, audio, or other content
| name | code-reviewer |
| description | Monitor codebase changes and generate standardized analysis documentation |
Continuously monitor a codebase for changes and produce standardized per-commit documentation including architecture changes, features, regressions, and breaking changes.
This skill should be invoked:
# Check for new commits since last analyzed
git log --oneline HEAD ^LAST_ANALYZED_SHA
All documentation goes into bot-analysis/ folder in the repository root.
bot-analysis/
+-- INDEX.md # Main navigation (chronological commit table)
+-- README.md # Quick start and status
+-- commits/
+-- 01_XXXXXXX.md # First commit analysis
+-- 02_XXXXXXX.md # Second commit analysis
+-- ...
+-- NN_XXXXXXX.md # Latest commit (HEAD)
# Commit XXXXXXX - [Short Description]
| Field | Value |
|-------|-------|
| SHA | `XXXXXXX` |
| Timestamp | YYYY-MM-DD HH:MM:SS +ZZZZ |
| Message | [commit message] |
| Sequence | #N of M |
| Delta | +X minutes from previous |
| AI Model | [model name or Unknown] |
**Navigation:** [Index](../INDEX.md) | Prev: [XXXXXX](NN_XXXXXX.md) | Next: [XXXXXX](NN_XXXXXX.md)
---
## Status
| Aspect | State |
|--------|-------|
| Video | [Working/Broken/etc] |
| Audio | [Working/Broken/etc] |
| GUI | [Working/Broken/etc] |
| Tests | [X passing] |
---
## Architecture Changes
[Diff tree or "No changes"]
---
## Features Introduced
[New features or "None"]
---
## Breaking Changes
[Breaking changes or "None"]
---
## Regressions
[New regressions introduced or fixed, with ID like R-XXX]
---
## Notes
[Additional observations]
git log --format="%h|%ai|%s" HEAD -1
Compare with last entry in commits/ folder.
Get commit details:
git show COMMIT_SHA --stat
git diff PREV_SHA..COMMIT_SHA --name-status
Create new commit file: commits/NN_XXXXXXX.md
Update INDEX.md with new row
Update navigation links in previous commit file
Check for:
R-XXX: [Description]
Introduced: SHA (timestamp)
Fixed: SHA or UNRESOLVED
Impact: [affected components]
| Status | Meaning |
|---|---|
| Working | Functional |
| Broken | Known regression |
| WIP | Work in progress |
| Unknown | Not tested |