← 返回
未分类

项目改动审查清单

Execute a production-ready code review checklist for this Vue 3 + TypeScript + Vite project. Use when the user asks for review, self-check before commit, pre-merge quality gate, risk scan, or "按规范检查" style requests.
user_8767e570
未分类 community v1.0.0 1 版本 99224.8 Key: 无需
★ 0
Stars
📥 128
下载
💾 6
安装
1
版本
#latest

概述

Project Review Checklist

Scope

Use this skill to run an actionable review for changed code in this repository.

Focus on correctness, regression risk, type safety, reactivity safety, maintainability, and release readiness.

Required Review Output

Return findings in this order:

  1. Critical - must fix before merge
  2. Major - high-priority fixes
  3. Minor - improvements and consistency issues
  4. Test Gaps - missing validation cases
  5. Pass Summary - only after listing findings

If no findings exist, explicitly state: No blocking findings.

Execution Workflow

Copy this checklist and mark progress:

Review Progress
- [ ] Step 1: Collect diff context
- [ ] Step 2: Run correctness and regression scan
- [ ] Step 3: Run Vue 3 + TS rule scan
- [ ] Step 4: Run UI and style consistency scan
- [ ] Step 5: Run testing and risk scan
- [ ] Step 6: Produce structured findings

Step 1: Collect diff context

  • Identify changed files first, then review the changed hunks.
  • Prioritize files in src/views, src/components, src/composables, src/router.
  • Keep comments tied to concrete code locations and behavior impact.

Step 2: Correctness and regression scan

Check:

  • API response shape assumptions without guards
  • Async race conditions and stale state updates
  • Missing loading/error/empty states
  • Unhandled promise rejections
  • Silent failures in try/catch that hide user impact
  • Route guard and permission regressions

Block merge if business flow can break under partial/empty API data.

Step 3: Vue 3 + TypeScript rule scan

Check against project conventions:

  • Use