📦 Review Checklist
Review Checklist をレビューするSkill。幅広いユーザー向け。
📺 まず動画で見る(YouTube)
▶ 【Claude Code完全入門】誰でも使える/Skills活用法/経営者こそ使うべき ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Common recurring mistakes in LobeHub code review — console leftovers, missing return await, hardcoded secrets, hardcoded i18n strings, desktop router pair drift, antd vs @lobehub/ui, non-idempotent migrations, cloud impact red flags. Use as a quick checklist when reviewing PRs, diffs, or branch changes.
🇯🇵 日本人クリエイター向け解説
Review Checklist をレビューするSkill。幅広いユーザー向け。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o review-checklist.zip https://jpskill.com/download/1289.zip && unzip -o review-checklist.zip && rm review-checklist.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1289.zip -OutFile "$d\review-checklist.zip"; Expand-Archive "$d\review-checklist.zip" -DestinationPath $d -Force; ri "$d\review-checklist.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
review-checklist.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
review-checklistフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Review Checklist の使い方を教えて
- › Review Checklist で何ができるか具体例で見せて
- › Review Checklist を初めて使う人向けにステップを案内して
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Review Checklist
Correctness
- Leftover
console.log/console.debug— should usedebugpackage or remove - Missing
return awaitin try/catch — see https://typescript-eslint.io/rules/return-await/ (not in our ESLint config yet, requires type info) - Can the fix/implementation be more concise, efficient, or have better compatibility?
Security
- No sensitive data (API keys, tokens, credentials) in
console.*ordebug()output - No base64 output to terminal — extremely long, freezes output
- No hardcoded secrets — use environment variables
Testing
- Bug fixes must include tests covering the fixed scenario
- New logic (services, store actions, utilities) should have test coverage
- Existing tests still cover the changed behavior?
- Prefer
vi.spyOnovervi.mock(see/testingskill)
i18n
- New user-facing strings use i18n keys, not hardcoded text
- Keys added to
src/locales/default/{namespace}.tswith{feature}.{context}.{action|status}naming - For PRs:
locales/translations for all languages updated (pnpm i18n)
SPA / routing
desktopRouterpair: If the diff touchessrc/spa/router/desktopRouter.config.tsx, does it also updatesrc/spa/router/desktopRouter.config.desktop.tsxwith the same route paths and nesting? Single-file edits often cause drift and blank screens.
Reuse
- Newly written code duplicates existing utilities in
packages/utilsor shared modules? - Copy-pasted blocks with slight variation — extract into shared function
antdimports replaceable with@lobehub/uiwrapped components (Input,Button,Modal,Avatar, etc.)- Use
antd-styletoken system, not hardcoded colors; prefercreateStaticStyles+cssVar.*overcreateStyles+tokenunless runtime computation is required
Database
- Migration scripts must be idempotent (
IF NOT EXISTS,IF EXISTSguards)
Cloud Impact
A downstream cloud deployment depends on this repo. Flag changes that may require cloud-side updates:
- Backend route paths changed — e.g., renaming
src/app/(backend)/webapi/chat/route.tsor changing its exports - SSR page paths changed — e.g., moving/renaming files under
src/app/[variants]/(auth)/ - Dependency versions bumped — e.g., upgrading
nextordrizzle-orminpackage.json - *`@lobechat/business-
exports changed** — e.g., renaming a function insrc/business/or changing type signatures inpackages/business/` src/business/andpackages/business/must not expose cloud commercial logic in comments or code