← スキル一覧に戻る

code-review
by legacy3
⭐ 1🍴 0📅 2026年1月3日
SKILL.md
name: code-review description: Review code for Effect-TS patterns, common issues, and project conventions. Use when reviewing PRs, checking code quality, or before committing changes. allowed-tools: Read, Grep, Glob
Code Review
Read-only review skill for checking code quality against project conventions.
Checklist
Effect-TS Patterns
- Uses
Effect.genwithyield*, not async/await - No type casts (
as Type) - usesatisfiesinstead - Errors are
Data.TaggedErrorwith descriptive payloads - Services use
Context.TagorEffect.Servicepattern - Layers properly compose dependencies
Branded IDs (wowlab-core)
- Schema + Brand dual pattern for IDs
-
eslint-disable no-redeclarecomment present - Validation logic matches between Schema and Brand
Portal Components
- Pages are minimal (just render component)
-
loading.tsxuses*Skeletoncomponent -
"use client"only where needed - Barrel exports in
index.ts - Jotai atoms in domain folders under
atoms/ - Uses
@/lib/formatutilities (not raw.toLocaleString()or manual formatting) - Loading states use Flask components (not Loader2 from lucide)
- Providers export hook + Provider + types from
providers/index.ts
General
- No unused imports or variables
- No
console.login production code - Error handling is comprehensive
- Types are explicit at module boundaries
- Control flow has braces (no single-line if/for)
- No backwards-compat shims or deprecated code
How to Use
- I'll read the files you want reviewed
- Check against the patterns above
- Report issues with file:line references
- Suggest fixes where applicable
Common Issues
Wrong
const data = await fetchData(); // async/await
const x = foo as Bar; // type cast
Right
const data = yield * fetchData(); // Effect.gen
const x = foo satisfies Bar; // satisfies
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です