jpskill.com
📦 その他 コミュニティ

judge

テストキッチンやおまかせオフの成果を、5つの基準で評価する採点システムで、直接呼び出すのではなく、cookoffやomakase-offから自動的に実行され、実装の出来栄えを判断するSkill。

📜 元の英語説明(参考)

Scoring framework for test-kitchen cookoff and omakase-off. Invoked at Phase 4 to evaluate implementations using 5-criteria scoring. Do not invoke directly - called by cookoff/omakase-off.

🇯🇵 日本人クリエイター向け解説

一言でいうと

テストキッチンやおまかせオフの成果を、5つの基準で評価する採点システムで、直接呼び出すのではなく、cookoffやomakase-offから自動的に実行され、実装の出来栄えを判断するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o judge.zip https://jpskill.com/download/16726.zip && unzip -o judge.zip && rm judge.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/16726.zip -OutFile "$d\judge.zip"; Expand-Archive "$d\judge.zip" -DestinationPath $d -Force; ri "$d\judge.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して judge.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → judge フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Test Kitchen Judge

5つの基準フレームワークを使用して実装を評価します。すべてのセクションを以下に示すとおりに正確に記入してください。

用語: このスキルでは「impl」を使用していますが、以下の両方に対応します。

  • Cookoff: impl-1, impl-2, impl-3 (同じ設計、異なる実装)
  • Omakase: variant-a, variant-b (異なるアプローチ/設計)

必須出力フォーマット

この構造を正確に出力する必要があります。要約したり省略したりしないでください。

## Gate Check
| Impl | Tests Pass | Design Adherence |
|------|------------|------------------|
| impl-1 | X/X ✓ または ✗ | Yes/No |
| impl-2 | X/X ✓ または ✗ | Yes/No |

## Feasibility Check
| Impl | Status | Notes |
|------|--------|-------|
| impl-1 | ✓ OK / ⚠️ Flag | Details |
| impl-2 | ✓ OK / ⚠️ Flag | Details |

## Scoring Worksheet

### impl-1
**Fitness for Purpose** (実際の問題を解決するか?)

*Functional requirements:*
- [ ] 主要なユースケースはエンドツーエンドで動作するか?
- [ ] 明示的に述べられたすべての要件が実装されているか?
- [ ] ハッピーパスだけでなく、現実的なシナリオを処理するか?

*User needs (literal な要件を超えて):*
- [ ] ユーザーは実際にこれを使用するか、それともデモだけか?
- [ ] 文字通りの要求だけでなく、実際の問題を解決するか?
- [ ] デプロイ/配布は、述べられたニーズと一致するか?

*Future considerations (関連する場合):*
- [ ] 成長/スケーリングについて言及されている場合、アーキテクチャはそれをサポートするか?
- [ ] チーム/コラボレーションについて言及されている場合、他の人が保守可能か?

Checklist: _/8 YES → **Score: _/5** (7-8=5, 5-6=4, 4=3, 2-3=2, 0-1=1)
*Note: すべての項目がすべてのプロジェクトに適用されるわけではありません。関連する項目に基づいてスコアを付けてください。*

**Justified Complexity** (すべての行がその価値に見合っているか?)
- Unnecessary abstractions: ___
- Dead code: ___
- Bloat estimate: ___%

*Line count comparison (複数の impl がある場合):*
- This impl: ___ lines
- Smallest impl: ___ lines
- Extra lines justified by: ___

→ **Score: _/5** (5=minimal, 4=slight bloat <10%, 3=10-25% bloat, 2=25-50%, 1=>50%)

**Readability** (5分でコアフローを理解できるか?)
Violations:
- [ ] Single-letter vars (ループインデックスではない): +1 each = __
- [ ] Functions >50 lines: +1 each = __
- [ ] Nesting >3 levels: +1 each = __
- [ ] Magic numbers: +1 each = __
- [ ] Bad function names: +1 each = __
Total violations: __ → **Score: _/5** (0=5, 1-2=4, 3-4=3, 5-7=2, 8+=1)

**Robustness & Scale** (予期せぬ事態 + 成長に対応できるか?)
- [ ] Input validation?
- [ ] External call error handling?
- [ ] Useful error messages?
- [ ] Null/empty handling?
- [ ] Async timeouts?
- [ ] No unbounded loops?
- [ ] O(n log n) or better?
- [ ] Bounded memory?
- [ ] Queries paginated?
- [ ] No blocking I/O in hot path?
- [ ] Backoff/retry logic?
- [ ] Handles 10x load?
Checklist: _/12 YES + feasibility flags → **Score: _/5**
(11-12 + no flags=5, 9-10 or minor flag=4, 7-8=3, 5-6 or major flag=2, <5 or critical flag=1)

**Maintainability** (次の変更の苦痛は?)
- [ ] Single responsibility per function?
- [ ] Explicit dependencies (no globals)?
- [ ] Business logic separated from infra?
- [ ] New feature = ≤3 files changed?
- [ ] Config externalized?
- [ ] Tests catch regressions?
Checklist: _/6 YES → **Score: _/5** (6=5, 5=4, 4=3, 2-3=2, 0-1=1)

### impl-2
[REPEAT SAME FORMAT]

### impl-3 (if applicable)
[REPEAT SAME FORMAT]

## Judge Scorecard
| Criterion | impl-1 | impl-2 | impl-3 | Best |
|-----------|--------|--------|--------|------|
| Fitness for Purpose | | | | |
| Justified Complexity | | | | |
| Readability | | | | |
| Robustness & Scale | | | | |
| Maintainability | | | | |
| **TOTAL** | /25 | /25 | /25 | |

## Hard Gates
| Gate | Result |
|------|--------|
| Fitness Gate (Δ ≥ 2) | Triggered/Not triggered |
| Critical Flaw (any = 1) | Triggered/Not triggered |

## Winner Selection
**Winner: impl-X** (Score: __/25)

**Selection rationale:**
[この実装がなぜ勝ったのかを説明する2〜3文]

**Trade-offs acknowledged:**
[他の実装が優れていた点]

Scoring Reference

Scores Meaning

Score Meaning
5 Excellent - 期待を上回る
4 Good - 要件を完全に満たす
3 Adequate - コアは動作するが、いくつかのギャップがある
2 Poor - 重大な問題がある
1 Critical flaw - 失格

Hard Gates (Automatic)

  1. Fitness Gate: impl間で Fitness の Δ が ≥ 2 の場合 → Fitness が高い方が即座に勝利
  2. Critical Flaw: いずれかの基準が = 1 の場合 → その impl は除外

Fitness Gate Interpretation

Fitness Gate はどちらのコンテキストでも同じようにトリガーされますが、意味が異なります。

Context What Fitness Δ ≥ 2 Means
Cookoff 1つの実装が設計から逸脱したか、または誤解した。すべての impl は同じ仕様を実装しているため、同様の Fitness を持つ必要があります。大きなギャップは危険信号です。
Omakase 1つのアプローチが実際の問題をより適切に解決する。異なるアプローチは、正当に異なる Fitness を持つことができます。大きなギャップは、1つのアプローチが明らかに優れていることを意味します。

どちらの場合も、Fitness が高い方が勝ちます。解釈は、ギャップが存在する理由を説明するだけです。

Feasibility Red Flags

スコアリング前に確認してください。

  • O(n²) またはそれより悪い、上限のないデータ
  • 上限のないメモリ増加
  • 自己 DDoS パターン (ポーリング、バックオフなし)
  • ページネーションの欠落
  • ホットパスでのブロッキング I/O
  • エラー回復なし

Process

  1. すべての実装コードを読みます (すでにコンテキスト内にあるはずです)
  2. 各実装のワークシートを記入します - セクションをスキップしないでください
  3. ハードゲートを確認します
  4. 勝者を根拠とともに発表します

重要: 整数のスコアのみを使用してください (1〜5)。4.5のような半分のポイントは使用しないでください。

重要: すべてのチェックボックスを記入してください。ワークシートを要約したり省略したりしないでください。

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Test Kitchen Judge

Score implementations using the 5-criteria framework. Fill out ALL sections exactly as shown.

Terminology: This skill uses "impl" but works for both:

  • Cookoff: impl-1, impl-2, impl-3 (same design, different implementations)
  • Omakase: variant-a, variant-b (different approaches/designs)

REQUIRED OUTPUT FORMAT

You MUST produce this exact structure. Do not summarize or abbreviate.

## Gate Check
| Impl | Tests Pass | Design Adherence |
|------|------------|------------------|
| impl-1 | X/X ✓ or ✗ | Yes/No |
| impl-2 | X/X ✓ or ✗ | Yes/No |

## Feasibility Check
| Impl | Status | Notes |
|------|--------|-------|
| impl-1 | ✓ OK / ⚠️ Flag | Details |
| impl-2 | ✓ OK / ⚠️ Flag | Details |

## Scoring Worksheet

### impl-1
**Fitness for Purpose** (Does it solve the actual problem?)

*Functional requirements:*
- [ ] Primary use case works end-to-end?
- [ ] All explicitly stated requirements implemented?
- [ ] Handles realistic scenarios, not just happy path?

*User needs (beyond literal requirements):*
- [ ] Would the user actually use this, or just demo it?
- [ ] Does it solve the real problem, not just the literal request?
- [ ] Does deployment/distribution match stated needs?

*Future considerations (if relevant):*
- [ ] If growth/scaling mentioned, does architecture support it?
- [ ] If team/collaboration mentioned, is it maintainable by others?

Checklist: _/8 YES → **Score: _/5** (7-8=5, 5-6=4, 4=3, 2-3=2, 0-1=1)
*Note: Not all items apply to every project. Score based on relevant items.*

**Justified Complexity** (Every line earning its keep?)
- Unnecessary abstractions: ___
- Dead code: ___
- Bloat estimate: ___%

*Line count comparison (if multiple impls):*
- This impl: ___ lines
- Smallest impl: ___ lines
- Extra lines justified by: ___

→ **Score: _/5** (5=minimal, 4=slight bloat <10%, 3=10-25% bloat, 2=25-50%, 1=>50%)

**Readability** (Understand core flow in 5 min?)
Violations:
- [ ] Single-letter vars (not loop index): +1 each = __
- [ ] Functions >50 lines: +1 each = __
- [ ] Nesting >3 levels: +1 each = __
- [ ] Magic numbers: +1 each = __
- [ ] Bad function names: +1 each = __
Total violations: __ → **Score: _/5** (0=5, 1-2=4, 3-4=3, 5-7=2, 8+=1)

**Robustness & Scale** (Handles unexpected + growth?)
- [ ] Input validation?
- [ ] External call error handling?
- [ ] Useful error messages?
- [ ] Null/empty handling?
- [ ] Async timeouts?
- [ ] No unbounded loops?
- [ ] O(n log n) or better?
- [ ] Bounded memory?
- [ ] Queries paginated?
- [ ] No blocking I/O in hot path?
- [ ] Backoff/retry logic?
- [ ] Handles 10x load?
Checklist: _/12 YES + feasibility flags → **Score: _/5**
(11-12 + no flags=5, 9-10 or minor flag=4, 7-8=3, 5-6 or major flag=2, <5 or critical flag=1)

**Maintainability** (Pain of next change?)
- [ ] Single responsibility per function?
- [ ] Explicit dependencies (no globals)?
- [ ] Business logic separated from infra?
- [ ] New feature = ≤3 files changed?
- [ ] Config externalized?
- [ ] Tests catch regressions?
Checklist: _/6 YES → **Score: _/5** (6=5, 5=4, 4=3, 2-3=2, 0-1=1)

### impl-2
[REPEAT SAME FORMAT]

### impl-3 (if applicable)
[REPEAT SAME FORMAT]

## Judge Scorecard
| Criterion | impl-1 | impl-2 | impl-3 | Best |
|-----------|--------|--------|--------|------|
| Fitness for Purpose | | | | |
| Justified Complexity | | | | |
| Readability | | | | |
| Robustness & Scale | | | | |
| Maintainability | | | | |
| **TOTAL** | /25 | /25 | /25 | |

## Hard Gates
| Gate | Result |
|------|--------|
| Fitness Gate (Δ ≥ 2) | Triggered/Not triggered |
| Critical Flaw (any = 1) | Triggered/Not triggered |

## Winner Selection
**Winner: impl-X** (Score: __/25)

**Selection rationale:**
[2-3 sentences explaining WHY this implementation won]

**Trade-offs acknowledged:**
[What the other implementations did better]

Scoring Reference

Scores Meaning

Score Meaning
5 Excellent - exceeds expectations
4 Good - fully meets requirements
3 Adequate - core works, some gaps
2 Poor - significant issues
1 Critical flaw - disqualifying

Hard Gates (Automatic)

  1. Fitness Gate: If Fitness Δ ≥ 2 between impls → Higher fitness WINS immediately
  2. Critical Flaw: If ANY criterion = 1 → That impl is ELIMINATED

Fitness Gate Interpretation

The Fitness Gate triggers the same way in both contexts, but means different things:

Context What Fitness Δ ≥ 2 Means
Cookoff One implementation deviated from or misunderstood the design. All impls should have similar Fitness since they're implementing the same spec. A large gap is a red flag.
Omakase One approach genuinely solves the problem better. Different approaches can legitimately have different Fitness. A large gap means one approach is clearly superior.

In both cases, higher Fitness wins. The interpretation just explains why the gap exists.

Feasibility Red Flags

Check before scoring:

  • O(n²) or worse on unbounded data
  • Unbounded memory growth
  • Self-DDoS patterns (polling, no backoff)
  • Missing pagination
  • Blocking I/O in hot path
  • No error recovery

Process

  1. Read all implementation code (should already be in context)
  2. Fill out the worksheet for EACH implementation - do not skip sections
  3. Check hard gates
  4. Announce winner with rationale

CRITICAL: Use integer scores only (1-5). Do not use half points like 4.5.

CRITICAL: Fill out every checkbox. Do not summarize or abbreviate the worksheet.