원클릭으로
compare
Compare two benchmark runs side-by-side with narrative analysis of struggles, cost, and gate friction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Compare two benchmark runs side-by-side with narrative analysis of struggles, cost, and gate friction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Record a 5W1H changelog entry for the latest framework change into DESIGN_EVOLUTION.md. Run after committing changes to capture who/what/when/where/why/how.
Analyze how well an agent followed its CLAUDE.md strategy rules during a benchmark run. Use when analyzing agent behavior, rule compliance, or debugging why an agent failed.
SOC 직업 분류 기준
| name | compare |
| description | Compare two benchmark runs side-by-side with narrative analysis of struggles, cost, and gate friction. |
| argument-hint | <run1> <run2> |
| allowed-tools | Read, Edit, Grep, Glob, Bash |
Compare runs $ARGUMENTS side-by-side. Produce a data-driven narrative explaining where each agent struggled and why.
cargo xtask compare <run1> <run2>
Capture the full table. Note which run is A and which is B.
A level is a "struggle" if ANY of these are true:
List struggle levels for each run.
For each struggle level, read the agent's reasoning:
cargo xtask session-dump <run> --thinking --level <NN>
Look for:
For levels where friction differs between runs:
cargo xtask session-grep <run> --level <NN> nesting clippy refactor
Determine whether friction was productive (forced better code) or pure overhead.
Structure your analysis as:
For each struggle level, one paragraph: what happened, why, and how it resolved.
After producing the narrative, append a comparison summary to results/dev-sessions/RUN_LOG.md.
Use the Edit tool to insert the entry at the TOP of the file, right after the header (before the first --- separator that precedes a ## R section).
Format the entry as:
### Compare: {run1-short} vs {run2-short} — {YYYY-MM-DD}
**Winner:** {which run and why, one line}
**Levels:** {run1-short} {passed1}/{total1} vs {run2-short} {passed2}/{total2}
**Cost:** {run1-short} ${cost1} vs {run2-short} ${cost2}
**Key insight:** {one-sentence takeaway from the struggle analysis}
**Verdict:** {2-3 sentence summary of the narrative verdict}
If the runs belong to an existing round section (e.g., both are R25 runs), insert the comparison entry inside that section instead of at the top. Check the run names to determine the round number.
Important: Always save the comparison. The whole point is that analysis shouldn't be lost when the conversation ends.