OneKey PR Code Review
输出语言: 中文
Review Scope
- Base branch:
x
- Diff:
git fetch origin && git diff origin/x...HEAD (triple-dot)
Workflow
- Checkout —
gh pr checkout <PR_NUMBER> (skip if already on branch)
- Scope —
git diff origin/x...HEAD --stat to see change scope
- Triage — Determine which review modules apply (see triage table)
- Primary Review — Read each changed file, apply relevant checks from
references/
- Codex Cross-Review — If Codex MCP available, run full parallel review (see below)
- PR Comment Analysis — Fetch all existing PR comments (bot + human), analyze with local codebase context (see below)
- Merge Findings — Combine primary + Codex + PR comment findings, deduplicate, annotate confidence
- Score — Rate the PR across 4 dimensions (see Scoring System). This step is MANDATORY — every report MUST include the scoring table.
- Report — Generate structured report using the unified format. Follow the template exactly — every section is required.
- GH Comment — For Blocker issues, offer to post inline PR comments (with confirmation)
Codex MCP Integration
Check if mcp__codex__codex is in available tools.
If available:
- Send the full diff to Codex for an independent full review:
Review this PR diff for the OneKey crypto wallet monorepo. Focus on:
- Security vulnerabilities (secret leakage, auth bypass, supply-chain risks)
- Runtime bugs (race conditions, null safety, memory leaks)
- Architecture violations (import hierarchy, cross-platform issues)
- Code quality (hooks safety, error handling, performance)
Report each finding with: file:line, severity (Critical/High/Medium/Low), description, fix suggestion.
- Retrieve response via
mcp__codex__codex-reply
- Merge into primary review:
- Both found same issue → Mark
{Cross-validated ✅}, auto-promote to 🔵 High confidence
- Codex-only finding → Include with tag
[Codex], review manually to assign confidence
- Primary-only finding → Include normally
- Add a Codex 交叉验证摘要 table in the report (see report template)
If unavailable: Skip silently. Set "Codex 交叉验证: ⏭️ 未启用" in the report header. Do NOT mention Codex anywhere else.
PR Comment Analysis
Collect ALL existing comments on the PR — bot and human — then analyze each with your local codebase context. You have full source access, type system, and dependency graph; most commenters only saw the diff. Use this asymmetry.
Fetching All Comments
Use gh api to get full user metadata (including type field for bot detection):
# Top-level PR reviews (review bodies)
gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews \
--jq '[.[] | select(.body != "") | {author: .user.login, is_bot: (.user.type == "Bot"), body: .body, state: .state, association: .author_association}]'
# Inline review comments (file:line annotations)
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments \
--jq '[.[] | {author: .user.login, is_bot: (.user.type == "Bot"), path: .path, line: .line, body: .body, association: .author_association}]'
# General PR comments (issue-level)
gh api repos/{owner}/{repo}/issues/{pr_number}/comments \
--jq '[.[] | {author: .user.login, is_bot: (.user.type == "Bot"), body: .body, association: .author_association}]'
Bot detection — use the user.type == "Bot" field from GitHub API, not hardcoded username lists. This automatically covers any bot (current and future) without maintenance.
If no comments exist, set "PR 评论分析: ⏭️ 无评论" in the report header and skip this section.
Analysis Framework
For each substantive comment (skip empty approvals, CI status badges, pure formatting):
| Verdict |
Meaning |
Action |
| ✅ Confirmed |
Comment identifies a real issue |
Include in findings, tag source [<author>] |
| 🔍 Enriched |
Real issue, but analysis is shallow or fix is wrong |
Include with deeper fix guidance from your codebase knowledge |
| ❌ Noise |
Not an issue given full codebase context |
Note in "评论误报分析" with brief explanation of why |
| 📋 Already Covered |
Your primary review caught it |
Cross-validate, boost confidence |
Your local advantages — use them aggressively:
- Full source — trace data flow across files, not just the diff
- Type system — run
tsc, verify types end-to-end
- Architecture — you know OneKey's import hierarchy and platform patterns
- Dependencies —
yarn info, changelogs, actual vulnerability reachability
- Runtime reasoning — state flows, async lifecycles, race conditions
When someone flags something vague, dig into the source to confirm or refute. When a comment misses context (e.g., a function is safely guarded upstream), explain why. When a comment is right, amplify with richer context.
Cross-Validation Rules
- Comment + primary review agree → Mark
{Cross-validated ✅}, promote to 🔵 High
- Comment-only finding you confirm → Include at appropriate confidence with
[<author>] tag
- Comment-only finding you can't confirm or refute → Include as ⚪ Low with note
- Comment you refute with evidence → Add to "评论误报分析" section
Security Comment Special Handling
For security-related comments (from bots like Snyk/Dependabot or from human reviewers):
- Vulnerability reports — check if the vulnerable code path is actually reachable in OneKey's usage
- License issues — verify against OneKey's license policy
- Dependency alerts — check if the flagged version is actually used (not just in lockfile)
Triage: Which Checks to Run
Run git diff origin/x...HEAD --name-only and match:
| Changed Files Match |
Load |
package.json, lockfiles, node_modules patches, patches/*.patch |
[security-and-supply-chain.md] — full supply-chain review |
**/auth/**, **/vault/**, **/signing/**, **/crypto/**, manifest.json, **/manifest/*.js |
[security-and-supply-chain.md] — full security review |
Any .ts/.tsx with business logic |
[code-quality-patterns.md] — hooks, race conditions, null safety |
.android.ts(x), .ios.ts(x), .native.ts(x), .desktop.ts(x), .ext.ts(x), .web.ts(x), native modules, BigNumber usage |
[onekey-platform-patterns.md] — platform crashes & numeric safety |
Shell scripts (.sh), CI workflows (.yml) |
[onekey-platform-patterns.md] — build & CI section |
Always check regardless of file type:
- Accidental file commits (
.DS_Store, .env, node_modules)
- Import hierarchy violations (see below)
- PR description matches actual changes
- Run relevant commands from [quick-commands.md]
Import Hierarchy (ALWAYS verify)
@onekeyhq/shared <- FORBIDDEN to import from other OneKey packages
↓
@onekeyhq/components <- ONLY imports shared
↓
@onekeyhq/core <- ONLY imports shared
↓
@onekeyhq/kit-bg <- imports shared, core (NEVER components or kit)
↓
@onekeyhq/kit <- imports shared, components, kit-bg
↓
apps/* <- imports all
# Quick hierarchy violation check on changed files
git diff origin/x...HEAD --name-only | grep -E '\.tsx?$' | \
while IFS= read -r f; do [ -f "$f" ] && grep -l "from.*@onekeyhq" "$f" 2>/dev/null; done | \
while IFS= read -r f; do echo "=== $f ==="; grep "from.*@onekeyhq" "$f"; done
File Risk Classification
| Risk |
Patterns |
Action |
| Critical |
**/vault/**, **/signing/**, **/crypto/**, **/core/src/**, hardware wallet SDK |
Line-by-line review |
| High |
**/auth/**, API endpoints, state management, package.json, manifest.json |
Deep review |
| Medium |
UI components, platform-specific code, background services |
Standard review |
| Low |
Comments, type-only, formatting, tests, docs |
Scan for anomalies |
Scoring System
MANDATORY — every report must include this scoring table, no exceptions.
Rate the PR on 4 dimensions (1-10 each):
| Dimension |
Weight |
What to evaluate |
| 🔒 安全性 |
35% |
Secret leakage, auth bypass, supply-chain risk, input validation |
| 💎 代码质量 |
30% |
Hooks safety, error handling, race conditions, null safety, DRY |
| 🏛️ 架构合理性 |
20% |
Import hierarchy, separation of concerns, cross-platform consistency |
| ✅ 完整性 |
15% |
Edge cases handled, test coverage, migration paths, docs |
Total Score = weighted average, rounded to 1 decimal.
| Score |
Verdict |
Action |
| 8.0 - 10.0 |
✅ 可直接合入 |
No blockers, minor suggestions only |
| 5.0 - 7.9 |
⚠️ 需修改后复审 |
Has issues that should be fixed before merge |
| < 5.0 |
❌ 建议打回重做 |
Fundamental issues in security or architecture |
Scoring anchors — to keep scores consistent:
- Start at 8 for each dimension, deduct for issues found
- A single Critical security issue → Security capped at 3
- A single High bug → Code Quality capped at 5
- Import hierarchy violation → Architecture capped at 4
Confidence Levels
MANDATORY — every finding must use exactly one of these three emoji tags. Do NOT use percentages, do NOT use plain text like "高/中/低" without the emoji. Always use this exact format:
| Tag |
Meaning |
When to use |
| 🔵 High |
Confirmed, verifiable from code |
Clear bug, obvious violation, reproducible |
| 🟠 Medium |
Likely issue, needs context |
Pattern suggests problem, might be intentional |
| ⚪ Low |
Possible issue, needs human check |
Heuristic match, depends on business logic |
Cross-validated findings (primary + Codex agree, or primary + PR comment agree) → automatically 🔵 High.
Auto-Fix Patches
MANDATORY for these categories — if a finding matches one of these, you MUST include a diff patch:
console.error/warn/log → project logger (defaultLogger)
- Missing optional chaining on nullable refs
- Import hierarchy violations
- Missing cleanup in useEffect
- BigNumber type coercion (
Number(decimals))
- Missing type in union type definitions
Format — always use this exact structure:
**Auto-fix:**
\```diff
- old code
+ new code
\```
For other findings where the fix is unambiguous and doesn't require business context, also include auto-fix. When in doubt, include it — it's more useful to have a suggested fix than not.
Do NOT generate auto-fix for:
- Logic changes requiring business context understanding
- Security fixes needing architectural decisions
- Performance optimizations with tradeoffs
GH CLI Inline Comments
After generating the report, if there are findings that meet the comment threshold:
Comment threshold: 🔴 高 priority (any confidence) OR 🟡 中 priority with 🔵 High confidence. This means:
- All 🔴 高 findings (regardless of confidence)
- All 🟡 中 findings with 🔵 High confidence (cross-validated or confirmed from code)
- Excludes: 🟢 低 findings, and 🟡 中 with 🟠 Medium or ⚪ Low confidence
- List the qualifying findings that warrant PR comments
- Ask the reviewer: "以下问题建议直接评论到 PR 上,是否确认?"
- Only after explicit yes, post via:
# Inline comment on specific file:line
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments \
--field body="🟡 **问题标题**: 描述...
**建议修复:**
\`\`\`suggestion
修复代码
\`\`\`
_— Auto-review by Claude_" \
--field path="path/to/file.tsx" \
--field line=42 \
--field side="RIGHT" \
--field commit_id="$(git rev-parse HEAD)"
Rules:
- Never post without explicit reviewer confirmation
- Only post findings meeting the comment threshold (see above)
- Include auto-fix in
suggestion block when available
- Maximum 5 inline comments per PR
Unified Report Format
CRITICAL: Follow this template exactly. Every section marked [REQUIRED] must appear in every report. Do not skip or reorder sections.
# PR #NUMBER 代码审查报告
## 审查概要 [REQUIRED]
- **变更范围**: X 个文件, +Y / -Z 行
- **风险等级**: Critical / High / Medium / Low
- **涉及平台**: Extension / Mobile / Desktop / Web
- **Codex 交叉验证**: ✅ 已启用 / ⏭️ 未启用
- **PR 评论分析**: ✅ 已分析 (N 条评论, 其中 M 条来自 Bot) / ⏭️ 无评论
## 评分 [REQUIRED — NEVER SKIP THIS SECTION]
| 维度 | 得分 | 说明 |
|------|------|------|
| 🔒 安全性 | X/10 | 简要说明 |
| 💎 代码质量 | X/10 | 简要说明 |
| 🏛️ 架构合理性 | X/10 | 简要说明 |
| ✅ 完整性 | X/10 | 简要说明 |
| **总分** | **X.X/10** | **✅ 可直接合入 / ⚠️ 需修改后复审 / ❌ 建议打回** |
## Codex 交叉验证摘要 [REQUIRED if Codex was used, OMIT if not]
| 发现 | Primary | Codex | 状态 |
|------|---------|-------|------|
| 问题描述 | Yes/No | Yes/No | 交叉验证 / 仅 Primary / 仅 Codex |
## PR 评论分析 [REQUIRED if comments exist, OMIT if none]
| 来源 | 类型 | 发现 | 判定 | 说明 |
|------|------|------|------|------|
| Snyk | 🤖 Bot | 依赖漏洞 CVE-XXXX | ✅ Confirmed | 漏洞路径在 OneKey 中可达 |
| @reviewer | 👤 Human | 缺少 null check | 🔍 Enriched | 实际需要在上游 hook 中处理 |
| Devin | 🤖 Bot | 变量命名建议 | ❌ Noise | 命名符合项目规范 |
### 评论误报分析 [OMIT if no noise findings]
- **[来源] 误报**: 具体说明为什么这不是问题(引用源码上下文)
## 发现的问题 [REQUIRED]
### [🔴 高] [🔵 High] 问题标题 {Cross-validated ✅}
**文件**: `path/to/file.tsx:42`
**类型**: 安全 / 构建 / 运行时 / 性能 / 规范
**描述**: 问题是什么,为什么有风险
**Auto-fix:**
\```diff
- old code
+ new code
\```
---
### [🟡 中] [🟠 Medium] 问题标题
**文件**: `path/to/file.tsx:18`
**类型**: 运行时
**描述**: ...
**修复建议**: ...
---
## 修改清单 [REQUIRED]
| 优先级 | 置信度 | 文件 | 类型 | 描述 | Auto-fix |
|--------|--------|------|------|------|----------|
| 🔴 高 | 🔵 High | file1.tsx:42 | 安全 | 描述 | ✅ |
| 🟡 中 | 🟠 Medium | file2.tsx:18 | 运行时 | 描述 | — |
## 测试建议 [REQUIRED]
1. 测试场景
2. 测试场景
## GH 评论操作 [REQUIRED if qualifying findings exist, OMIT if none]
以下问题(🔵 High 置信度 + 🟡 中及以上)建议直接评论到 PR:
- [ ] 问题1 — `file.tsx:42`
- [ ] 问题2 — `file.tsx:88`
> 确认后将通过 `gh` CLI 发送 inline comments。
Priority Definitions
| Priority |
Criteria |
Action |
| 🔴 高 |
Build failure, security vulnerability, data loss, crash |
Must fix before merge |
| 🟡 中 |
Runtime bug, incorrect behavior, maintainability |
Should fix before merge |
| 🟢 低 |
Nice-to-have, minor inconsistency |
Can fix in follow-up |
Review Discipline
- Read the code — don't just grep. Read each changed file to understand intent.
- No false positives — only report issues you're confident about. Uncertain? Lower the confidence.
- No style nitpicks — focus on security, correctness, architecture, performance.
- Context matters — understand why the code was written this way before suggesting changes.
- Prioritize — 3 high-quality findings beats 20 marginal complaints.
- Score honestly — the score reflects reality, not diplomacy.
- Auto-fix aggressively — when the fix is clear, always include a diff patch. Reviewers prefer actionable suggestions.
Reference Files
- references/security-and-supply-chain.md — PII leakage, AuthN/AuthZ, supply-chain, manifest permissions
- references/code-quality-patterns.md — Hooks, race conditions, null safety, concurrent requests, error handling
- references/onekey-platform-patterns.md — Android/iOS crashes, Fabric, BigNumber, build/CI
- references/quick-commands.md — Bash one-liners for automated checking
1---2name: 1k-code-review-pr3description: Comprehensive PR code review for OneKey monorepo. Use when reviewing PRs, code changes, or diffs — covers security (secrets/PII leakage, supply-chain, AuthN/AuthZ), code quality (hooks, race conditions, null safety, concurrent requests), and OneKey-specific patterns (Fabric crashes, MIUI, BigNumber). Triggers on "review PR", "review this PR", "code review", "check this diff", "审查 PR", "代码审查", "review4---5
6# OneKey PR Code Review
7
8**输出语言**: 中文
9
10## Review Scope
11
12- Base branch: `x`
13- Diff: `git fetch origin && git diff origin/x...HEAD` (triple-dot)
14
15## Workflow
16
171. **Checkout** — `gh pr checkout <PR_NUMBER>` (skip if already on branch)
182. **Scope** — `git diff origin/x...HEAD --stat` to see change scope
193. **Triage** — Determine which review modules apply (see triage table)
204. **Primary Review** — Read each changed file, apply relevant checks from `references/`
215. **Codex Cross-Review** — If Codex MCP available, run full parallel review (see below)
226. **PR Comment Analysis** — Fetch all existing PR comments (bot + human), analyze with local codebase context (see below)
237. **Merge Findings** — Combine primary + Codex + PR comment findings, deduplicate, annotate confidence
248. **Score** — Rate the PR across 4 dimensions (see Scoring System). **This step is MANDATORY — every report MUST include the scoring table.**
259. **Report** — Generate structured report using the unified format. **Follow the template exactly — every section is required.**
2610. **GH Comment** — For Blocker issues, offer to post inline PR comments (with confirmation)
27
28## Codex MCP Integration
29
30Check if `mcp__codex__codex` is in available tools.
31
32**If available:**
331. Send the full diff to Codex for an independent full review:
34 ```
35 Review this PR diff for the OneKey crypto wallet monorepo. Focus on:
36 - Security vulnerabilities (secret leakage, auth bypass, supply-chain risks)
37 - Runtime bugs (race conditions, null safety, memory leaks)
38 - Architecture violations (import hierarchy, cross-platform issues)
39 - Code quality (hooks safety, error handling, performance)
40 Report each finding with: file:line, severity (Critical/High/Medium/Low), description, fix suggestion.
41 ```
422. Retrieve response via `mcp__codex__codex-reply`
433. Merge into primary review:
44 - **Both found same issue** → Mark `{Cross-validated ✅}`, auto-promote to 🔵 High confidence
45 - **Codex-only finding** → Include with tag `[Codex]`, review manually to assign confidence
46 - **Primary-only finding** → Include normally
474. Add a **Codex 交叉验证摘要** table in the report (see report template)
48
49**If unavailable:** Skip silently. Set "Codex 交叉验证: ⏭️ 未启用" in the report header. Do NOT mention Codex anywhere else.
50
51## PR Comment Analysis
52
53Collect ALL existing comments on the PR — bot and human — then analyze each with your local codebase context. You have full source access, type system, and dependency graph; most commenters only saw the diff. Use this asymmetry.
54
55### Fetching All Comments
56
57Use `gh api` to get full user metadata (including `type` field for bot detection):
58
59```bash
60# Top-level PR reviews (review bodies)
61gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews \
62 --jq '[.[] | select(.body != "") | {author: .user.login, is_bot: (.user.type == "Bot"), body: .body, state: .state, association: .author_association}]'
63
64# Inline review comments (file:line annotations)
65gh api repos/{owner}/{repo}/pulls/{pr_number}/comments \
66 --jq '[.[] | {author: .user.login, is_bot: (.user.type == "Bot"), path: .path, line: .line, body: .body, association: .author_association}]'
67
68# General PR comments (issue-level)
69gh api repos/{owner}/{repo}/issues/{pr_number}/comments \
70 --jq '[.[] | {author: .user.login, is_bot: (.user.type == "Bot"), body: .body, association: .author_association}]'
71```
72
73**Bot detection** — use the `user.type == "Bot"` field from GitHub API, not hardcoded username lists. This automatically covers any bot (current and future) without maintenance.
74
75If no comments exist, set "PR 评论分析: ⏭️ 无评论" in the report header and skip this section.
76
77### Analysis Framework
78
79For each substantive comment (skip empty approvals, CI status badges, pure formatting):
80
81| Verdict | Meaning | Action |
82|---------|---------|--------|
83| **✅ Confirmed** | Comment identifies a real issue | Include in findings, tag source `[<author>]` |
84| **🔍 Enriched** | Real issue, but analysis is shallow or fix is wrong | Include with deeper fix guidance from your codebase knowledge |
85| **❌ Noise** | Not an issue given full codebase context | Note in "评论误报分析" with brief explanation of why |
86| **📋 Already Covered** | Your primary review caught it | Cross-validate, boost confidence |
87
88**Your local advantages — use them aggressively:**
89- **Full source** — trace data flow across files, not just the diff
90- **Type system** — run `tsc`, verify types end-to-end
91- **Architecture** — you know OneKey's import hierarchy and platform patterns
92- **Dependencies** — `yarn info`, changelogs, actual vulnerability reachability
93- **Runtime reasoning** — state flows, async lifecycles, race conditions
94
95When someone flags something vague, dig into the source to confirm or refute. When a comment misses context (e.g., a function is safely guarded upstream), explain why. When a comment is right, amplify with richer context.
96
97### Cross-Validation Rules
98
99- Comment + primary review agree → Mark `{Cross-validated ✅}`, promote to 🔵 High
100- Comment-only finding you confirm → Include at appropriate confidence with `[<author>]` tag
101- Comment-only finding you can't confirm or refute → Include as ⚪ Low with note
102- Comment you refute with evidence → Add to "评论误报分析" section
103
104### Security Comment Special Handling
105
106For security-related comments (from bots like Snyk/Dependabot or from human reviewers):
107- **Vulnerability reports** — check if the vulnerable code path is actually reachable in OneKey's usage
108- **License issues** — verify against OneKey's license policy
109- **Dependency alerts** — check if the flagged version is actually used (not just in lockfile)
110
111## Triage: Which Checks to Run
112
113Run `git diff origin/x...HEAD --name-only` and match:
114
115| Changed Files Match | Load |
116|---------------------|------|
117| `package.json`, lockfiles, `node_modules` patches, `patches/*.patch` | [security-and-supply-chain.md] — full supply-chain review |
118| `**/auth/**`, `**/vault/**`, `**/signing/**`, `**/crypto/**`, `manifest.json`, `**/manifest/*.js` | [security-and-supply-chain.md] — full security review |
119| Any `.ts`/`.tsx` with business logic | [code-quality-patterns.md] — hooks, race conditions, null safety |
120| `.android.ts(x)`, `.ios.ts(x)`, `.native.ts(x)`, `.desktop.ts(x)`, `.ext.ts(x)`, `.web.ts(x)`, native modules, `BigNumber` usage | [onekey-platform-patterns.md] — platform crashes & numeric safety |
121| Shell scripts (`.sh`), CI workflows (`.yml`) | [onekey-platform-patterns.md] — build & CI section |
122
123**Always check** regardless of file type:
124- Accidental file commits (`.DS_Store`, `.env`, `node_modules`)
125- Import hierarchy violations (see below)
126- PR description matches actual changes
127- Run relevant commands from [quick-commands.md]
128
129## Import Hierarchy (ALWAYS verify)
130
131```
132@onekeyhq/shared <- FORBIDDEN to import from other OneKey packages
133 ↓
134@onekeyhq/components <- ONLY imports shared
135 ↓
136@onekeyhq/core <- ONLY imports shared
137 ↓
138@onekeyhq/kit-bg <- imports shared, core (NEVER components or kit)
139 ↓
140@onekeyhq/kit <- imports shared, components, kit-bg
141 ↓
142apps/* <- imports all
143```
144
145```bash
146# Quick hierarchy violation check on changed files
147git diff origin/x...HEAD --name-only | grep -E '\.tsx?$' | \
148 while IFS= read -r f; do [ -f "$f" ] && grep -l "from.*@onekeyhq" "$f" 2>/dev/null; done | \
149 while IFS= read -r f; do echo "=== $f ==="; grep "from.*@onekeyhq" "$f"; done
150```
151
152## File Risk Classification
153
154| Risk | Patterns | Action |
155|------|----------|--------|
156| **Critical** | `**/vault/**`, `**/signing/**`, `**/crypto/**`, `**/core/src/**`, hardware wallet SDK | Line-by-line review |
157| **High** | `**/auth/**`, API endpoints, state management, `package.json`, `manifest.json` | Deep review |
158| **Medium** | UI components, platform-specific code, background services | Standard review |
159| **Low** | Comments, type-only, formatting, tests, docs | Scan for anomalies |
160
161## Scoring System
162
163**MANDATORY** — every report must include this scoring table, no exceptions.
164
165Rate the PR on 4 dimensions (1-10 each):
166
167| Dimension | Weight | What to evaluate |
168|-----------|--------|-----------------|
169| **🔒 安全性** | 35% | Secret leakage, auth bypass, supply-chain risk, input validation |
170| **💎 代码质量** | 30% | Hooks safety, error handling, race conditions, null safety, DRY |
171| **🏛️ 架构合理性** | 20% | Import hierarchy, separation of concerns, cross-platform consistency |
172| **✅ 完整性** | 15% | Edge cases handled, test coverage, migration paths, docs |
173
174**Total Score** = weighted average, rounded to 1 decimal.
175
176| Score | Verdict | Action |
177|-------|---------|--------|
178| **8.0 - 10.0** | ✅ 可直接合入 | No blockers, minor suggestions only |
179| **5.0 - 7.9** | ⚠️ 需修改后复审 | Has issues that should be fixed before merge |
180| **< 5.0** | ❌ 建议打回重做 | Fundamental issues in security or architecture |
181
182**Scoring anchors** — to keep scores consistent:
183- Start at 8 for each dimension, deduct for issues found
184- A single Critical security issue → Security capped at 3
185- A single High bug → Code Quality capped at 5
186- Import hierarchy violation → Architecture capped at 4
187
188## Confidence Levels
189
190**MANDATORY** — every finding must use exactly one of these three emoji tags. Do NOT use percentages, do NOT use plain text like "高/中/低" without the emoji. Always use this exact format:
191
192| Tag | Meaning | When to use |
193|-----|---------|-------------|
194| **🔵 High** | Confirmed, verifiable from code | Clear bug, obvious violation, reproducible |
195| **🟠 Medium** | Likely issue, needs context | Pattern suggests problem, might be intentional |
196| **⚪ Low** | Possible issue, needs human check | Heuristic match, depends on business logic |
197
198Cross-validated findings (primary + Codex agree, or primary + PR comment agree) → automatically **🔵 High**.
199
200## Auto-Fix Patches
201
202**MANDATORY for these categories** — if a finding matches one of these, you MUST include a diff patch:
203- `console.error/warn/log` → project logger (`defaultLogger`)
204- Missing optional chaining on nullable refs
205- Import hierarchy violations
206- Missing cleanup in useEffect
207- BigNumber type coercion (`Number(decimals)`)
208- Missing type in union type definitions
209
210**Format — always use this exact structure:**
211```markdown
212**Auto-fix:**
213\```diff
214- old code
215+ new code
216\```
217```
218
219For other findings where the fix is unambiguous and doesn't require business context, also include auto-fix. When in doubt, include it — it's more useful to have a suggested fix than not.
220
221Do NOT generate auto-fix for:
222- Logic changes requiring business context understanding
223- Security fixes needing architectural decisions
224- Performance optimizations with tradeoffs
225
226## GH CLI Inline Comments
227
228After generating the report, if there are findings that meet the comment threshold:
229
230**Comment threshold**: 🔴 高 priority (any confidence) OR 🟡 中 priority with 🔵 High confidence. This means:
231- All 🔴 高 findings (regardless of confidence)
232- All 🟡 中 findings with 🔵 High confidence (cross-validated or confirmed from code)
233- Excludes: 🟢 低 findings, and 🟡 中 with 🟠 Medium or ⚪ Low confidence
234
2351. List the qualifying findings that warrant PR comments
2362. **Ask the reviewer**: "以下问题建议直接评论到 PR 上,是否确认?"
2373. **Only after explicit yes**, post via:
238
239```bash
240# Inline comment on specific file:line
241gh api repos/{owner}/{repo}/pulls/{pr_number}/comments \
242 --field body="🟡 **问题标题**: 描述...
243
244**建议修复:**
245\`\`\`suggestion
246修复代码
247\`\`\`
248
249_— Auto-review by Claude_" \
250 --field path="path/to/file.tsx" \
251 --field line=42 \
252 --field side="RIGHT" \
253 --field commit_id="$(git rev-parse HEAD)"
254```
255
256**Rules:**
257- Never post without explicit reviewer confirmation
258- Only post findings meeting the comment threshold (see above)
259- Include auto-fix in `suggestion` block when available
260- Maximum 5 inline comments per PR
261
262## Unified Report Format
263
264**CRITICAL: Follow this template exactly. Every section marked [REQUIRED] must appear in every report. Do not skip or reorder sections.**
265
266```markdown
267# PR #NUMBER 代码审查报告
268
269## 审查概要 [REQUIRED]
270- **变更范围**: X 个文件, +Y / -Z 行
271- **风险等级**: Critical / High / Medium / Low
272- **涉及平台**: Extension / Mobile / Desktop / Web
273- **Codex 交叉验证**: ✅ 已启用 / ⏭️ 未启用
274- **PR 评论分析**: ✅ 已分析 (N 条评论, 其中 M 条来自 Bot) / ⏭️ 无评论
275
276## 评分 [REQUIRED — NEVER SKIP THIS SECTION]
277
278| 维度 | 得分 | 说明 |
279|------|------|------|
280| 🔒 安全性 | X/10 | 简要说明 |
281| 💎 代码质量 | X/10 | 简要说明 |
282| 🏛️ 架构合理性 | X/10 | 简要说明 |
283| ✅ 完整性 | X/10 | 简要说明 |
284| **总分** | **X.X/10** | **✅ 可直接合入 / ⚠️ 需修改后复审 / ❌ 建议打回** |
285
286## Codex 交叉验证摘要 [REQUIRED if Codex was used, OMIT if not]
287
288| 发现 | Primary | Codex | 状态 |
289|------|---------|-------|------|
290| 问题描述 | Yes/No | Yes/No | 交叉验证 / 仅 Primary / 仅 Codex |
291
292## PR 评论分析 [REQUIRED if comments exist, OMIT if none]
293
294| 来源 | 类型 | 发现 | 判定 | 说明 |
295|------|------|------|------|------|
296| Snyk | 🤖 Bot | 依赖漏洞 CVE-XXXX | ✅ Confirmed | 漏洞路径在 OneKey 中可达 |
297| @reviewer | 👤 Human | 缺少 null check | 🔍 Enriched | 实际需要在上游 hook 中处理 |
298| Devin | 🤖 Bot | 变量命名建议 | ❌ Noise | 命名符合项目规范 |
299
300### 评论误报分析 [OMIT if no noise findings]
301- **[来源] 误报**: 具体说明为什么这不是问题(引用源码上下文)
302
303## 发现的问题 [REQUIRED]
304
305### [🔴 高] [🔵 High] 问题标题 {Cross-validated ✅}
306**文件**: `path/to/file.tsx:42`
307**类型**: 安全 / 构建 / 运行时 / 性能 / 规范
308**描述**: 问题是什么,为什么有风险
309**Auto-fix:**
310\```diff
311- old code
312+ new code
313\```
314
315---
316
317### [🟡 中] [🟠 Medium] 问题标题
318**文件**: `path/to/file.tsx:18`
319**类型**: 运行时
320**描述**: ...
321**修复建议**: ...
322
323---
324
325## 修改清单 [REQUIRED]
326
327| 优先级 | 置信度 | 文件 | 类型 | 描述 | Auto-fix |
328|--------|--------|------|------|------|----------|
329| 🔴 高 | 🔵 High | file1.tsx:42 | 安全 | 描述 | ✅ |
330| 🟡 中 | 🟠 Medium | file2.tsx:18 | 运行时 | 描述 | — |
331
332## 测试建议 [REQUIRED]
3331. 测试场景
3342. 测试场景
335
336## GH 评论操作 [REQUIRED if qualifying findings exist, OMIT if none]
337以下问题(🔵 High 置信度 + 🟡 中及以上)建议直接评论到 PR:
338- [ ] 问题1 — `file.tsx:42`
339- [ ] 问题2 — `file.tsx:88`
340
341> 确认后将通过 `gh` CLI 发送 inline comments。
342```
343
344## Priority Definitions
345
346| Priority | Criteria | Action |
347|----------|----------|--------|
348| **🔴 高** | Build failure, security vulnerability, data loss, crash | Must fix before merge |
349| **🟡 中** | Runtime bug, incorrect behavior, maintainability | Should fix before merge |
350| **🟢 低** | Nice-to-have, minor inconsistency | Can fix in follow-up |
351
352## Review Discipline
353
354- **Read the code** — don't just grep. Read each changed file to understand intent.
355- **No false positives** — only report issues you're confident about. Uncertain? Lower the confidence.
356- **No style nitpicks** — focus on security, correctness, architecture, performance.
357- **Context matters** — understand why the code was written this way before suggesting changes.
358- **Prioritize** — 3 high-quality findings beats 20 marginal complaints.
359- **Score honestly** — the score reflects reality, not diplomacy.
360- **Auto-fix aggressively** — when the fix is clear, always include a diff patch. Reviewers prefer actionable suggestions.
361
362## Reference Files
363
364- [references/security-and-supply-chain.md](references/security-and-supply-chain.md) — PII leakage, AuthN/AuthZ, supply-chain, manifest permissions
365- [references/code-quality-patterns.md](references/code-quality-patterns.md) — Hooks, race conditions, null safety, concurrent requests, error handling
366- [references/onekey-platform-patterns.md](references/onekey-platform-patterns.md) — Android/iOS crashes, Fabric, BigNumber, build/CI
367- [references/quick-commands.md](references/quick-commands.md) — Bash one-liners for automated checking