qa-debugging

qa-debugging is a skill for Codex from vasilyu1983/AI-Agents-public. It costs 33 tokens per session (4,855 once invoked), scanned A, original, MIT.

An evidence-based process for finding the cause of crashes, regressions, flaky tests, and production bugs. It moves from reproducing and isolating a problem to verifying the fix and preventing its return.

In plain words
What is it for?
Use it to investigate stack traces, logs, traces, profiles, flaky behavior, and bugs in applications or AI agent workflows.
Why use it?
It reduces guesswork and helps distinguish symptoms from causes. It also ensures that a fixed bug is checked again with a regression test or other prevention step.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it to investigate stack traces, logs, traces, profiles, flaky behavior, and bugs in applications or AI agent workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vasilyu1983/ai-agents-public/qa-debugging
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 vasilyu1983/AI-Agents-public --skill qa-debugging
Clone the repo
git clone --depth 1 https://github.com/vasilyu1983/AI-Agents-public

Made for: 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 qa-debugging

README.md
[![agentmods](https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/qa-debugging/github.svg)](https://agentmods.dev/skills/vasilyu1983/ai-agents-public/qa-debugging)
Your own site
<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/qa-debugging"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/qa-debugging/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 qa-debugging

Your own site · 80×15
<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/qa-debugging"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/qa-debugging.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,855 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00033 $0.04855
Opus 5 $0.00016 $0.02427
Sonnet 5 $0.00007 $0.00971
Haiku 4.5 $0.00003 $0.00485

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

Security

Grade A, and why

qa-debugging scanned grade A with 0 findings 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.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/config_diff.py, scripts/log_error_summary.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

frameworks/shared-skills/skills/qa-debugging/SKILL.md · 391 lines

How it starts

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

QA Debugging

Use systematic debugging to turn symptoms into evidence, then into a verified fix with a regression test and prevention plan.

Default stance:

  • Keep debugging evidence-first: reproduce, isolate, measure, then change one variable at a time.
  • Treat logs, metrics, traces, and profiles as the default production debugging substrate.
  • When telemetry implementation is missing or broken, hand off setup work to ../qa-observability/SKILL.md.
  • For agentic systems, debug the full chain: user input, prompt/version, retrieval context, tool calls, model output, and guardrails.

Quick Reference

Need Go to
Run the debugging sequence ## Default Workflow (Reproduce -> Isolate -> Instrument -> Fix -> Verify -> Prevent)
Pick the right triage branch ## Triage Tracks (Pick The First Branch That Fits)
Search known errors before debugging from scratch ## Search The Validated Corpus First (Recognizable Failures)
Apply production-safe debugging ## Production & Incident Safety
Decide when to stop guessing, escalate to design fix, or catch a cognitive trap ## Expert Judgment (What a Checklist Misses)
Load references and templates ## Navigation

Quick Start

Intake (Ask First)

  • Capture the failure signature: error message, stack trace, request ID/trace ID, timestamp, build SHA, environment, affected user/tenant.
  • For browser/E2E issues, capture the exact repro command plus trace/error-context artifact path before changing anything.
  • Confirm expected vs actual behavior, plus the smallest reliable reproduction steps (or “cannot reproduce” explicitly).
  • Ask “when did this start?” and “what changed?” (deploy, flag, config, data, dependency, infra).
  • Identify blast radius and urgency: who/what is impacted, and whether this is an incident.

Output Shape (Default)

  • Summary of symptoms + confirmed facts
  • Top hypotheses (ranked) with evidence and disconfirming tests
  • Next experiments (smallest, fastest, safest) with expected outcomes
  • Fix options (root-cause) + verification plan + regression test target
  • If production-impacting: mitigation/rollback plan + rollout + prevention

Read the full file on GitHub · 391 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 · 391 lines · 33 tokens per session scan A 7b50d536a2b3

Subscribe to this mod's changes

qa-debugging is a skill published in the GitHub repository vasilyu1983/AI-Agents-public (87 stars, last pushed 10d ago), licensed MIT. It adds 33 tokens to every session and 4,855 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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

debugging-strategies

Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance issues, or unexpected behavior.

wshobson/agents · 43 tokens

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

sql-optimization-patterns

Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database schemas, or optimizing application performance.

wshobson/agents · 44 tokens

parallel-debugging

Debug complex issues using competing hypotheses with parallel investigation, evidence collection, and root cause arbitration. Use this skill when debugging bugs with multiple potential causes, performing root cause analysis, or organizing parallel investigation workflows.

wshobson/agents · 44 tokens

error-handling-patterns

Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability.

wshobson/agents · 43 tokens

spark-optimization

Optimize Apache Spark jobs with partitioning, caching, shuffle optimization, and memory tuning. Use when improving Spark performance, debugging slow jobs, or scaling data processing pipelines.

wshobson/agents · 37 tokens