Self-Eval: Honest Work Evaluation

Honestly evaluate AI work quality using a two-axis scoring system.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/self-eval.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/engineering/skills/self-eval#main ~/.claude/skills/self-eval

For one project only, change the path to .claude/skills/self-eval.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Self-Eval: Honest Work Evaluation

Show the full text182 lines
namedescriptionlicense
self-evalHonestly evaluate AI work quality using a two-axis scoring system. Use after completing a task, code review, or work session to get an unbiased assessment. Detects score inflation, forces devil's advocate reasoning, and persists scores across sessions.MIT

Self-Eval: Honest Work Evaluation

ultrathink

Tier: STANDARD Category: Engineering / Quality Dependencies: None (prompt-only, no external tools required)

Description

Self-eval is a Claude Code skill that produces honest, calibrated work evaluations. It replaces the default AI tendency to rate everything 4/5 with a structured two-axis scoring system, mandatory devil's advocate reasoning, and cross-session anti-inflation detection.

The core insight: AI self-assessment converges to "everything is a 4" because a single-axis score conflates task difficulty with execution quality. Self-eval separates these axes, then combines them via a fixed matrix that the model cannot override.

Features

  • Two-axis scoring — Independently rates task ambition (Low/Medium/High) and execution quality (Poor/Adequate/Strong), then combines via a lookup matrix
  • Mandatory devil's advocate — Before finalizing, must argue for both higher AND lower scores, then resolve the tension
  • Score persistence — Appends scores to .self-eval-scores.jsonl in the working directory, building history across sessions
  • Anti-inflation detection — Reads past scores and flags clustering (4+ of last 5 identical)
  • Matrix-locked scoring — The composite score comes from the matrix, not from direct selection. Low ambition caps at 2/5 regardless of execution quality

Usage

After completing work in a Claude Code session:

/self-eval

With context about what to evaluate:

/self-eval the authentication refactor we just completed

The skill reviews the conversation history, identifies what was accomplished, scores it on both axes, runs the devil's advocate check, and appends the result to the score history file.

Examples

Example 1: Feature Implementation
/self-eval added pagination to the user list API

Output:

## Self-Evaluation

**Task:** Added cursor-based pagination to the user list API endpoint
**Ambition:** Medium — New feature with established patterns, but required careful backwards compatibility
**Execution:** Strong — All tests pass, handles edge cases, existing clients unaffected

**Devil's Advocate:**
- Lower: Pagination is well-documented. The pattern was copied from another endpoint with minor changes. Could argue Low ambition.
- Higher: The backwards-compat requirement made this harder than a greenfield implementation. Had to support both offset and cursor modes.
- Resolution: Medium ambition holds — the backwards-compat constraint added real complexity beyond copy-paste.

**Score: 4** — Solid execution on meaningful work with real constraints.
Example 2: Bug Fix
/self-eval

Output:

## Self-Evaluation

**Task:** Fixed race condition in the checkout flow causing duplicate orders
**Ambition:** Medium — Required debugging across 3 services to find the root cause
**Execution:** Adequate — Fix works but the test only covers the exact scenario reported, not the general class of race conditions

**Devil's Advocate:**
- Lower: The fix was a single line (adding a mutex). Once found, it was trivial.
- Higher: Finding the root cause across 3 services took real investigation. The mutex placement required understanding the full flow.
- Resolution: Medium ambition is correct for the investigation, but execution drops to Adequate — a more thorough fix would address the pattern, not just the instance.

**Score: 3** — Good debugging work but the fix is narrow.

What to Evaluate

$ARGUMENTS

If no arguments provided, review the full conversation history to identify what was accomplished this session. Summarize the work in one sentence before scoring.

How to Score — Two-Axis Model

Score on two independent axes, then combine using the matrix. Do NOT pick a number first and rationalize it — rate each axis separately, then read the matrix.

Axis 1: Task Ambition (what was attempted)

Rate the difficulty and risk of what was worked on. NOT how well it was done.

  • Low (1) — Safe, familiar, routine. No real risk of failure. Examples: minor config changes, simple refactors, copy-paste with small modifications, tasks you were confident you'd complete before starting.
  • Medium (2) — Meaningful work with novelty or challenge. Partial failure was possible. Examples: new feature implementation, integrating an unfamiliar API, architectural changes, debugging a tricky issue.
  • High (3) — Ambitious, unfamiliar, or high-stakes. Real risk of complete failure. Examples: building something from scratch in an unfamiliar domain, complex system redesign, performance-critical optimization, shipping to production under pressure.

Self-check: If you were confident of success before starting, ambition is Low or Medium, not High.

Axis 2: Execution Quality (how well it was done)

Rate the quality of the actual output, independent of how ambitious the task was.

  • Poor (1) — Major failures, incomplete, wrong output, or abandoned mid-task. The deliverable doesn't meet its own stated criteria.
  • Adequate (2) — Completed but with gaps, shortcuts, or missing rigor. Did the thing but left obvious improvements on the table.
  • Strong (3) — Well-executed, thorough, quality output. No obvious improvements left undone given the scope.
Composite Score Matrix
Poor Exec (1) Adequate Exec (2) Strong Exec (3)
Low Ambition (1) 1 2 2
Medium Ambition (2) 2 3 4
High Ambition (3) 2 4 5

Read the matrix, don't override it. The composite is your score. The devil's advocate below can cause you to re-rate an axis — but you cannot directly override the matrix result.

Key properties:

  • Low ambition caps at 2. Safe work done perfectly is still safe work.
  • A 5 requires BOTH high ambition AND strong execution. It should be rare.
  • High ambition + poor execution = 2. Bold failure hurts.
  • The most common honest score for solid work is 3 (medium ambition, adequate execution).

Devil's Advocate (MANDATORY)

Before writing your final score, you MUST write all three of these:

  1. Case for LOWER: Why might this work deserve a lower score? What was easy, what was avoided, what was less ambitious than it appears? Would a skeptical reviewer agree with your axis ratings?
  2. Case for HIGHER: Why might this work deserve a higher score? What was genuinely challenging, surprising, or exceeded the original plan?
  3. Resolution: If either case reveals you mis-rated an axis, re-rate it and recompute the matrix result. Then state your final score with a 1-2 sentence justification that addresses at least one point from each case.

If your devil's advocate is less than 3 sentences total, you're not engaging with it — try harder.

Anti-Inflation Check

Check for a score history file at .self-eval-scores.jsonl in the current working directory.

If the file exists, read it and check the last 5 scores. If 4+ of the last 5 are the same number, flag it:

Warning: Score clustering detected. Last 5 scores: [list]. Consider whether you're anchoring to a default.

If the file doesn't exist, ask yourself: "Would an outside observer rate this the same way I am?"

Score Persistence

After presenting your evaluation, append one line to .self-eval-scores.jsonl in the current working directory:

{"date":"YYYY-MM-DD","score":N,"ambition":"Low|Medium|High","execution":"Poor|Adequate|Strong","task":"1-sentence summary"}

This enables the anti-inflation check to work across sessions. If the file doesn't exist, create it.

Output Format

Present your evaluation as:

Self-Evaluation

Task: [1-sentence summary of what was attempted] Ambition: [Low/Medium/High] — [1-sentence justification] Execution: [Poor/Adequate/Strong] — [1-sentence justification]

Devil's Advocate:

  • Lower: [why it might deserve less]
  • Higher: [why it might deserve more]
  • Resolution: [final reasoning]

Score: [1-5] — [1-sentence final justification]

1---
2name: "self-eval"
3description: "Honestly evaluate AI work quality using a two-axis scoring system. Use after completing a task, code review, or work session to get an unbiased assessment. Detects score inflation, forces devil's advocate reasoning, and persists scores across sessions."
4license: "MIT"
5---
6 
7# Self-Eval: Honest Work Evaluation
8 
9ultrathink
10 
11**Tier:** STANDARD
12**Category:** Engineering / Quality
13**Dependencies:** None (prompt-only, no external tools required)
14 
15## Description
16 
17Self-eval is a Claude Code skill that produces honest, calibrated work evaluations. It replaces the default AI tendency to rate everything 4/5 with a structured two-axis scoring system, mandatory devil's advocate reasoning, and cross-session anti-inflation detection.
18 
19The core insight: AI self-assessment converges to "everything is a 4" because a single-axis score conflates task difficulty with execution quality. Self-eval separates these axes, then combines them via a fixed matrix that the model cannot override.
20 
21## Features
22 
23- **Two-axis scoring** — Independently rates task ambition (Low/Medium/High) and execution quality (Poor/Adequate/Strong), then combines via a lookup matrix
24- **Mandatory devil's advocate** — Before finalizing, must argue for both higher AND lower scores, then resolve the tension
25- **Score persistence** — Appends scores to `.self-eval-scores.jsonl` in the working directory, building history across sessions
26- **Anti-inflation detection** — Reads past scores and flags clustering (4+ of last 5 identical)
27- **Matrix-locked scoring** — The composite score comes from the matrix, not from direct selection. Low ambition caps at 2/5 regardless of execution quality
28 
29## Usage
30 
31After completing work in a Claude Code session:
32 
33```
34/self-eval
35```
36 
37With context about what to evaluate:
38 
39```
40/self-eval the authentication refactor we just completed
41```
42 
43The skill reviews the conversation history, identifies what was accomplished, scores it on both axes, runs the devil's advocate check, and appends the result to the score history file.
44 
45## Examples
46 
47### Example 1: Feature Implementation
48 
49```
50/self-eval added pagination to the user list API
51```
52 
53Output:
54```
55## Self-Evaluation
56 
57**Task:** Added cursor-based pagination to the user list API endpoint
58**Ambition:** Medium — New feature with established patterns, but required careful backwards compatibility
59**Execution:** Strong — All tests pass, handles edge cases, existing clients unaffected
60 
61**Devil's Advocate:**
62- Lower: Pagination is well-documented. The pattern was copied from another endpoint with minor changes. Could argue Low ambition.
63- Higher: The backwards-compat requirement made this harder than a greenfield implementation. Had to support both offset and cursor modes.
64- Resolution: Medium ambition holds — the backwards-compat constraint added real complexity beyond copy-paste.
65 
66**Score: 4** — Solid execution on meaningful work with real constraints.
67```
68 
69### Example 2: Bug Fix
70 
71```
72/self-eval
73```
74 
75Output:
76```
77## Self-Evaluation
78 
79**Task:** Fixed race condition in the checkout flow causing duplicate orders
80**Ambition:** Medium — Required debugging across 3 services to find the root cause
81**Execution:** Adequate — Fix works but the test only covers the exact scenario reported, not the general class of race conditions
82 
83**Devil's Advocate:**
84- Lower: The fix was a single line (adding a mutex). Once found, it was trivial.
85- Higher: Finding the root cause across 3 services took real investigation. The mutex placement required understanding the full flow.
86- Resolution: Medium ambition is correct for the investigation, but execution drops to Adequate — a more thorough fix would address the pattern, not just the instance.
87 
88**Score: 3** — Good debugging work but the fix is narrow.
89```
90 
91---
92 
93## What to Evaluate
94 
95$ARGUMENTS
96 
97If no arguments provided, review the full conversation history to identify what was accomplished this session. Summarize the work in one sentence before scoring.
98 
99## How to Score — Two-Axis Model
100 
101Score on two independent axes, then combine using the matrix. Do NOT pick a number first and rationalize it — rate each axis separately, then read the matrix.
102 
103### Axis 1: Task Ambition (what was attempted)
104 
105Rate the difficulty and risk of what was worked on. NOT how well it was done.
106 
107- **Low (1)** — Safe, familiar, routine. No real risk of failure. Examples: minor config changes, simple refactors, copy-paste with small modifications, tasks you were confident you'd complete before starting.
108- **Medium (2)** — Meaningful work with novelty or challenge. Partial failure was possible. Examples: new feature implementation, integrating an unfamiliar API, architectural changes, debugging a tricky issue.
109- **High (3)** — Ambitious, unfamiliar, or high-stakes. Real risk of complete failure. Examples: building something from scratch in an unfamiliar domain, complex system redesign, performance-critical optimization, shipping to production under pressure.
110 
111**Self-check:** If you were confident of success before starting, ambition is Low or Medium, not High.
112 
113### Axis 2: Execution Quality (how well it was done)
114 
115Rate the quality of the actual output, independent of how ambitious the task was.
116 
117- **Poor (1)** — Major failures, incomplete, wrong output, or abandoned mid-task. The deliverable doesn't meet its own stated criteria.
118- **Adequate (2)** — Completed but with gaps, shortcuts, or missing rigor. Did the thing but left obvious improvements on the table.
119- **Strong (3)** — Well-executed, thorough, quality output. No obvious improvements left undone given the scope.
120 
121### Composite Score Matrix
122 
123| | Poor Exec (1) | Adequate Exec (2) | Strong Exec (3) |
124|------------------------|:---:|:---:|:---:|
125| **Low Ambition (1)** | 1 | 2 | 2 |
126| **Medium Ambition (2)**| 2 | 3 | 4 |
127| **High Ambition (3)** | 2 | 4 | 5 |
128 
129**Read the matrix, don't override it.** The composite is your score. The devil's advocate below can cause you to re-rate an axis — but you cannot directly override the matrix result.
130 
131Key properties:
132- Low ambition caps at 2. Safe work done perfectly is still safe work.
133- A 5 requires BOTH high ambition AND strong execution. It should be rare.
134- High ambition + poor execution = 2. Bold failure hurts.
135- The most common honest score for solid work is 3 (medium ambition, adequate execution).
136 
137## Devil's Advocate (MANDATORY)
138 
139Before writing your final score, you MUST write all three of these:
140 
1411. **Case for LOWER:** Why might this work deserve a lower score? What was easy, what was avoided, what was less ambitious than it appears? Would a skeptical reviewer agree with your axis ratings?
1422. **Case for HIGHER:** Why might this work deserve a higher score? What was genuinely challenging, surprising, or exceeded the original plan?
1433. **Resolution:** If either case reveals you mis-rated an axis, re-rate it and recompute the matrix result. Then state your final score with a 1-2 sentence justification that addresses at least one point from each case.
144 
145If your devil's advocate is less than 3 sentences total, you're not engaging with it — try harder.
146 
147## Anti-Inflation Check
148 
149Check for a score history file at `.self-eval-scores.jsonl` in the current working directory.
150 
151If the file exists, read it and check the last 5 scores. If 4+ of the last 5 are the same number, flag it:
152> **Warning: Score clustering detected.** Last 5 scores: [list]. Consider whether you're anchoring to a default.
153 
154If the file doesn't exist, ask yourself: "Would an outside observer rate this the same way I am?"
155 
156## Score Persistence
157 
158After presenting your evaluation, append one line to `.self-eval-scores.jsonl` in the current working directory:
159 
160```json
161{"date":"YYYY-MM-DD","score":N,"ambition":"Low|Medium|High","execution":"Poor|Adequate|Strong","task":"1-sentence summary"}
162```
163 
164This enables the anti-inflation check to work across sessions. If the file doesn't exist, create it.
165 
166## Output Format
167 
168Present your evaluation as:
169 
170## Self-Evaluation
171 
172**Task:** [1-sentence summary of what was attempted]
173**Ambition:** [Low/Medium/High] — [1-sentence justification]
174**Execution:** [Poor/Adequate/Strong] — [1-sentence justification]
175 
176**Devil's Advocate:**
177- Lower: [why it might deserve less]
178- Higher: [why it might deserve more]
179- Resolution: [final reasoning]
180 
181**Score: [1-5]** — [1-sentence final justification]
182 

Discussion