通过 Skills CLI 安装
使用 npx skills add 将该 skill 安装到选中的 Agent。Phase 0 命令均为按规则生成,尚未验证。
npx skills add https://github.com/garrytan/gstack/tree/main/review -g -a codex -y去掉 -g 可改为项目级安装
分支合并前,先把真正危险的改动挑出来。
Find the risky changes before the branch lands.
高信号 PR 评审的首选。它读的是 diff 本身,而不是把整个仓库重新总结一遍,所以评审会落在真正变化的代码上。最擅长信任边界类问题——SQL 注入、鉴权检查、条件分支副作用——这些在浅层评审里最容易漏掉。纯样式问题别用它,丢给 linter 更划算。建议先在普通 feature 分支上验过一次,再放到 hot-fix 流程里用。
Best first pick for high-signal PR review. It reads the actual diff instead of re-summarizing the whole repo, so the review stays grounded in code that changed. Strongest on trust-boundary cases — SQL injection, auth checks, conditional side-effects — where surface reviewers usually miss the failure mode. Skip it for pure style nits; bring in a linter instead. Try it on a feature branch before relying on it for hot-fix gating.
使用 npx skills add 将该 skill 安装到选中的 Agent。Phase 0 命令均为按规则生成,尚未验证。
npx skills add https://github.com/garrytan/gstack/tree/main/review -g -a codex -y去掉 -g 可改为项目级安装
请求评审前,先给分支做一次发布前检查。
先找 bug、回归和缺失测试。
在 CI 暴露问题之前,先补上明显的测试缺口。
| 当前 · this skillGStack Review | Git Shiproom | Review Radar | Test Bench | |
|---|---|---|---|---|
| 评分 · rating | 4.9 | 4.9 | 4.8 | 4.4 |
| 星标 · stars | 123k | 13k | 11k | 6.1k |
| 风险 · risk | 低风险 · low risk | 低风险 · low risk | 低风险 · low risk | 低风险 · low risk |
| 最适合 · best for | 合并前 PR 评审 | 分支发布前检查 | 聚焦代码评审 | 缺失覆盖 |
| 不适合 · not for | 纯样式评审 | 深度代码评审 | 浏览器 QA | 手工浏览器探索 |