Agent skill · AI & Agents

debugging-agent

Self-Improving Agent that monitors all other agent skills, analyzes their logs, detects issues, and proposes improvements. AUTO-TRIGGERS: - Every 30 minutes (scheduled) - When error rate > 5% (any agent) - When 3+ recurring errors in 24h (same error type) - When performance degrades > 2x baseline

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill debugging-agent --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0
Allowed tools: -view_file-grep_search-run_command
Path: skills/agent/debugging-agent/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

# Debugging Agent **Self-Improving Agent System의 핵심 컴포넌트** 다른 모든 agent의 로그를 분석하여 문제를 발견하고 개선안을 제안합니다. --- ## 📋 Core Workflow ### 1. Log Collection (로그 수집) ```bash python backend/ai/skills/system/debugging-agent/scripts/log_reader.py \ --days 1 \ --categories system,war-room,analysis ``` **수집 대상:** - `backend/ai/skills/logs/*/*/execution-*.jsonl` - `backend/ai/skills/logs/*/*/errors-*.jsonl` - `backend/ai/skills/logs/*/*/performance-*.jsonl` **Output:** ```json { "agents": ["signal-consolidation", "war-room-debate", ...], "total_executions": 50, "total_errors": 3, "time_range": "2025-12-25 to 2025-12-26" } ``` --- ### 2. Pattern Detection (패턴 감지) ```bash python backend/ai/skills/system/debugging-agent/scripts/pattern_detector.py \ --input logs_summary.json \ --output patterns.json ``` **감지 패턴:** #### A. Recurring Errors (반복 에러) - **조건**: 동일한 error type이 24시간 내 3회 이상 - **예시**: `TypeError: missing required positional argument` (3회) - **우선순위**: HIGH #### B. Performance Degradation (성능 저하) - **조건**: duration_ms가 baseline 대비 2배 이상 - **예시**: 평균 1000ms → 최근 2500ms - **우선순위**: MEDIUM #### C. High Error Rate (높은 에러율) - **조건**: error rate > 5% - **예시**: 50 executions, 4 errors = 8% - **우선순위*

What's inside
Steps it walks through
  1. 📋 Core Workflow
  2. 1. Log Collection (로그 수집)
  3. 2. Pattern Detection (패턴 감지)
  4. 3. Context Synthesis (맥락 통합)
  5. 4. Improvement Proposal (개선안 생성)
  6. 🎯 Confidence Scoring (5 Metrics)
  7. 🔄 Usage Examples
  8. Manual Trigger
  9. Scheduled Execution (via orchestrator)
  10. 📁 Output Structure
  11. ⚠️ Important Notes
  12. 🚀 Next Steps
Ships with 1 file
  • metadata.json
Commands it runs
python backend/ai/skills/system/debugging-agent/scripts/log_reader.py \
python backend/ai/skills/system/debugging-agent/scripts/pattern_detector.py \
Read related skills
cat backend/ai/skills/war-room/war-room-debate/SKILL.md
cat backend/api/war_room_router.py
python backend/ai/skills/system/debugging-agent/scripts/improvement_proposer.py \
Analyze recent logs
python backend/ai/skills/system/debugging-agent/scripts/log_reader.py --days 1
Detect patterns
python backend/ai/skills/system/debugging-agent/scripts/pattern_detector.py
More from claude-skill-registry
All skills →
About this skill
What does the debugging-agent skill do?

Self-Improving Agent that monitors all other agent skills, analyzes their logs, detects issues, and proposes improvements. AUTO-TRIGGERS: - Every 30 minutes (scheduled) - When error rate > 5% (any agent) - When 3+ recurring errors in 24h (same error type) - When performance degrades > 2x baseline

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill debugging-agent --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