judge-bug-hunter

judge-bug-hunter is a skill for Claude Code, Codex from event4u-app/agent-config. It costs 51 tokens per session (2,085 once invoked), scanned A, original, MIT.

A code-review helper that looks for functional bugs in a change, such as crashes, missed edge cases, race conditions, and incorrect error handling.

In plain words
What is it for?
Use it to inspect a code diff for null-related failures, off-by-one errors, empty-case problems, concurrency issues, and bad error paths.
Why use it?
It helps catch behavior problems that a normal review may miss. It focuses on whether the code works correctly, not on style, security, or test coverage.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to inspect a code diff for null-related failures, off-by-one errors, empty-case problems, concurrency issues, and bad error paths.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/event4u-app/agent-config/judge-bug-hunter
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add event4u-app/agent-config --skill judge-bug-hunter
Clone the repo
git clone --depth 1 https://github.com/event4u-app/agent-config

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for judge-bug-hunter

README.md
[![agentmods](https://agentmods.dev/badge/skills/event4u-app/agent-config/judge-bug-hunter/github.svg)](https://agentmods.dev/skills/event4u-app/agent-config/judge-bug-hunter)
Your own site
<a href="https://agentmods.dev/skills/event4u-app/agent-config/judge-bug-hunter"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/judge-bug-hunter/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for judge-bug-hunter

Your own site · 80×15
<a href="https://agentmods.dev/skills/event4u-app/agent-config/judge-bug-hunter"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/judge-bug-hunter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,085 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.02085
Opus 5 $0.00026 $0.01043
Sonnet 5 $0.00010 $0.00417
Haiku 4.5 $0.00005 $0.00209

Measured 9d ago against content hash 32cf2ba0a4fa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

judge-bug-hunter scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

the implementer with the concrete probe — backend: `curl` or
src/skills/judge-bug-hunter/SKILL.md · 197 lines

How it starts

The opening of the file, as written. The whole thing — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.

judge-bug-hunter

You are a judge specialized in functional correctness. Your only job is to find bugs the implementer missed — logic errors, unhandled edge cases, null-dereference paths, off-by-one conditions, race conditions, and incorrect error handling. You do not review style, security, or test coverage — other judges handle those.

When to use

  • A diff is ready for review and correctness is the risk
  • /review-changes dispatches its "bug" slice to this skill
  • /do-and-judge or /judge is invoked on a non-trivial code change
  • A reviewer asks "could this crash?", "are we handling null?", or "what about the empty case?"

Do NOT use when:

Procedure

1. Inspect the task and the diff

Read the task description (ticket, PR body, commit message) and the full diff. Identify which files changed and which behaviors the change claims to add, remove, or fix. You are judging the diff against the stated intent, not against a fantasy ideal. Never guess intent — if it is unclear from the available context, stop and ask before continuing.

2. Analyze each changed hunk

For every changed function or block, answer:

Question Why it matters
What are the inputs — can any be null, empty, or out of range? Null-deref, empty-collection crash
Are loop bounds and indices correct? Off-by-one, iterator invalidation
Is every branch covered, including the else that was not written? Silent fall-through
Are error paths handled (caught, logged, surfaced)? Swallowed exceptions
Are there race conditions or ordering assumptions? Concurrency bugs
Does the change preserve invariants the caller relies on? Contract break

Read the full file on GitHub · 197 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 197 lines · 51 tokens per session scan A 32cf2ba0a4fa

Subscribe to this mod's changes

judge-bug-hunter is a skill published in the GitHub repository event4u-app/agent-config (10 stars, last pushed today), licensed MIT. It adds 51 tokens to every session and 2,085 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

doubt-driven-development

Subjects every non-trivial decision to a fresh-context adversarial review before it stands. Use when you want every assumption cross-examined before proceeding, when stress-testing a plan for hidden failure modes, when correctness matters more than speed, when working in unfamiliar code, when stakes are high…

addyosmani/agent-skills · 96 tokens

systemic-issue-triage

Trigger: new issue, bug report, triage, backlog, issue flood, community report, root cause, dead-end, blocked user. Attack issues by root class, never one-by-one; fixes must shrink the system, not grow it.

Gentleman-Programming/gentle-ai · 57 tokens

issue-root-resolution

Trigger: root audit, atacar la raíz, issue roots, backlog roots, mechanism map, deletion-driven fix, resolver issues de raíz, close outdated issues. Audit and resolve issue clusters by verified root cause.

Gentleman-Programming/gentle-ai · 45 tokens

rdd-defect-workflow

Trigger: RDD, receipt-driven development, review authority, receipt/lineage, correction/recovery, delivery gate/kill switch, bounded review defects. Guide work.

Gentleman-Programming/gentle-ai · 41 tokens

project-check

Existing project health scan — audits Infrastructure, Security, Quality, and Harness setup. Read-only. Use when: '/project-check', 'project health check', 'project audit', 'what\'s missing', 'analyze my project', 'check setup'. Ends with /project-init and /setup recommendations. NOT for new projects (use…

AlexZio00/sovereign-skills · 81 tokens

full-audit

Exhaustive, denominator-driven audit of an entire area (codebase, docs, memory, skills, DB, config). Runs a 6-phase pipeline: scope agreement + prior-map diff -> deterministic sweep (counts/versions/paths/parsing plus cross-index reconciliation) -> parallel read-only content review (citations forced, rule dry-run) ->…

AlexZio00/sovereign-skills · 205 tokens