Agent skill · Code Review & Quality

run-evaluation

Evaluate the latest Universal Agent run for errors, bottlenecks, and opportunities for improvement. This skill should be used after an agent run completes to perform a critical assessment by analyzing the run.log file, session directory output, and Logfire traces. Use when the user wants to debug issues, understand performance problems, identify exceptions, check if the agent stayed on a happy path, or get recommendations for improving agent behavior.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill run-evaluation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/run-evaluation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Run Evaluation Skill Perform a comprehensive post-mortem analysis of the latest Universal Agent run. ## Workflow ### Step 1: Identify the Latest Session Find the most recent session directory: ```bash ls -lt /home/kjdragan/lrepos/universal_agent/AGENT_RUN_WORKSPACES/ | grep session_ | head -1 ``` Extract the session path (e.g., `/home/kjdragan/lrepos/universal_agent/AGENT_RUN_WORKSPACES/session_20260115_094820`). ### Step 2: Read the Run Log Load the full run log for context: ```bash cat {session_dir}/run.log ``` This contains the complete terminal output including: - Tool calls and responses - Error messages - Timing information - Agent decisions ### Step 3: Extract Key Metrics from run.log Parse the log for: - **Tool call count**: Count occurrences of `🔧 [` - **Error indicators**: Search for `Error`, `Failed`, `Exception`, `❌` - **Timing**: Look at `+Xs` timestamps for latency - **Retries/deduplication**: Search for `Idempotent`, `retry`, `deduped` ### Step 4: Query Logfire for Trace Analysis Use the Logfire MCP tools to analyze the run. Get the trace_id from the run.log (appears near the top). **Key queries:** 1. **Find all exceptions in the run:** ```sql SELECT start_timesta

What's inside
Steps it walks through
  1. Workflow
  2. Step 1: Identify the Latest Session
  3. Step 2: Read the Run Log
  4. Step 3: Extract Key Metrics from run.log
  5. Step 4: Query Logfire for Trace Analysis
  6. Step 5: Analyze Session Artifacts
  7. Step 6: Generate Evaluation Report
  8. Evaluation Report Template
  9. Evaluation Criteria
  10. Happy Path Indicators (✅)
  11. Warning Indicators (⚠️)
  12. Critical Indicators (❌)
  13. Output
Ships with 1 file
  • metadata.json
Commands it runs
ls -lt /home/kjdragan/lrepos/universal_agent/AGENT_RUN_WORKSPACES/ | grep session_ | head -1
cat {session_dir}/run.log
find {session_dir} -type f -name "*.md" -o -name "*.json" -o -name "*.html" | head -30
More from claude-skill-registry
All skills →
About this skill
What does the run-evaluation skill do?

Evaluate the latest Universal Agent run for errors, bottlenecks, and opportunities for improvement. This skill should be used after an agent run completes to perform a critical assessment by analyzing the run.log file, session directory output, and Logfire traces. Use when the user wants to debug issues, understand performance problems, identify exceptions, check if the agent stayed on a happy path, or get recommendations for improving agent behavior.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill run-evaluation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going