ワンクリックで
agent-self-evaluation
Self-rate your own output on five evidence-backed axes before handing it back, catching omissions and overconfidence.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Self-rate your own output on five evidence-backed axes before handing it back, catching omissions and overconfidence.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build Flutter APK/IPA, generate changelog, update buildlog, and commit version bump. Handles platform selection, build mode, and artifact renaming.
Build Unity APK/IPA on macOS with Unity 6.x — pre-flight checks, version bump, iOS signing params, post-build verification, buildlog, and commit.
Evidence-driven bug investigation and fix pipeline. Use when something is broken, not working, or the root cause is ambiguous.
Two independent reviewers must both approve high-stakes output before it ships, breaking the single-reviewer blind-spot problem.
Team-orchestrated feature development with parallel specialist agents. Use when building a feature that benefits from multiple agents working concurrently. You act as Product Director coordinating the team.
Interactive agent picker for composing and dispatching parallel teams. Browse available agents across domains, pick a roster, dispatch in parallel.
| name | agent-self-evaluation |
| description | Self-rate your own output on five evidence-backed axes before handing it back, catching omissions and overconfidence. |
| when_to_use | Use after completing a non-trivial deliverable — code spanning 3+ files or ~50+ lines, a multi-step workflow, a debugging session with 3+ attempts, or a design/analysis document. Also when the user says "rate yourself", "how good was that", "grade this", or "self-review". Skip for trivial one-line answers and pure conversation. |
| allowed-tools | Read Grep Glob Bash |
Source: adapted from affaan-m/ecc
skills/agent-self-evaluation(MIT).
A deliberate reflection step after a complex task: rate your own output against a 5-axis rubric with concrete evidence per axis, before the user has to find the gaps. This is not a pass/fail gate — it surfaces omissions and overconfidence so you can fix them proactively.
| Axis | Question | What it catches |
|---|---|---|
| Accuracy | Are the facts, claims, and outputs correct? | Hallucinations, wrong API names, bad syntax, false statements |
| Completeness | Did it cover everything the user asked for? | Missed edge cases, unhandled errors, forgotten requirements |
| Clarity | Is it understandable and well-structured? | Confusing explanation, undefined jargon, rambling |
| Actionability | Can the user act on it immediately? | Vague suggestions, missing steps, "you should X" with no how |
| Conciseness | Minimum words/tokens needed? | Redundancy, over-explanation, restating the question |
5 — Exceptional: no reasonable improvement possible
4 — Good: minor nits only, no substantive gaps
3 — Adequate: meets the request but one notable weakness
2 — Weak: a clear gap affecting usability or correctness
1 — Poor: fundamentally misses the request or has significant errors
Every score below 5 MUST cite specific evidence — show the gap, don't just name it. "Could be
better" is not evaluation. A 3 must say exactly what is missing or wrong. Use tool outputs as proof
(tests passed → cite them; lint clean → cite it; don't guess — grep for the proof per
verify-before-claim.md).
Task: Add retry logic to HTTP client
Accuracy: 5 — exponential backoff verified; no hallucinated methods
Completeness: 4 — happy path + 3 error cases; MISSING: timeout for hung connections
Clarity: 5 — comments explain the backoff formula; PR links the motivating incident
Actionability:5 — single merge, tests pass, no follow-ups
Conciseness: 4 — 47 lines; retry loop could extract a helper (~8 lines)
Overall: 4.6 — one gap (timeout handling). Fix before merging.
verification-loop — deterministic build/lint/test checks; cite its output as accuracy evidence.adversarial-review — when the stakes warrant independent reviewers, not just self-rating.code-reviewer agent — external code review; this skill is your own pre-handoff pass.