# Check Agent Performance

> Agent routing and execution performance metrics including routing times, confidence scores, and transformation success rates

- Skill: `omninode-ai/check-agent-performance` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add omninode-ai/check-agent-performance`
- Raw SKILL.md: https://api.skillmd.com/api/skills/omninode-ai/check-agent-performance/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: OmniNode-ai (https://skillmd.com/u/omninode-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/omninode-ai/check-agent-performance

---


# Check Agent Performance

Analyze agent routing and execution performance metrics over specified timeframes.

## What It Checks

- Recent routing decisions (5min, 1hr, 24hr)
- Average routing time and confidence scores
- Agent selection frequency
- Transformation success rates
- Performance threshold violations

## How to Use

```bash
python3 ${CLAUDE_PLUGIN_ROOT}/skills/system_status/check_agent_performance/execute.py \
  --timeframe 1h
```

### Arguments

- `--timeframe`: Time period (5m, 15m, 1h, 24h, 7d) [default: 1h]
- `--top-agents`: Number of top agents to show [default: 10]

## Example Output

```json
{
  "timeframe": "1h",
  "routing": {
    "total_decisions": 145,
    "avg_routing_time_ms": 7.8,
    "avg_confidence": 0.89,
    "threshold_violations": 0
  },
  "top_agents": [
    {"agent": "agent-api-architect", "count": 42, "avg_confidence": 0.92},
    {"agent": "agent-debug-intelligence", "count": 38, "avg_confidence": 0.87}
  ],
  "transformations": {
    "total": 120,
    "success_rate": 0.98,
    "avg_duration_ms": 85
  }
}
```

