bugHunt

Reproduce bugs, apply targeted repairs, and commit regression tests in Git repositories.

1|2|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/joi-fairshare/agentic-workflow --skill bughunt-joi-fairshare
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bugHunt
Source: https://github.com/joi-fairshare/agentic-workflow/tree/main/skills/bugHunt
Command: npx skills add https://github.com/joi-fairshare/agentic-workflow --skill bughunt-joi-fairshare

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill turns chaotic bug hunting into a disciplined fix-and-verify workflow, ensuring reproduction, atomic repair commits, regression test creation, and QA reporting all happen in one guided loop.

Core Features & Use Cases

  • Reproduce, locate, and document failures by running provided commands or deriving tests from bug descriptions before touching any code.
  • Tiered verification lets you choose quick lint/typecheck checks, targeted test suites, or exhaustive npm test runs based on urgency and confidence requirements.
  • Pipeline, testing, and reporting automation includes preparing prism-mcp context, generating QA reports, and committing both fix and regression test to keep the repo history clean.

Quick Start

Run /bugHunt --tier standard describe the npm test failure to trigger the fix-and-verify loop.

Frequently Asked Questions about bugHunt

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate regression testing and bug fixes in an npm project?

Automated regression testing and bug fixes require a structured fix-and-verify loop that reproduces the failure, applies a targeted repair, and commits the regression test alongside the fix to keep Git history atomic.

What's the best way to reproduce a bug before modifying code in a Git repository?

Reproducing a bug before modifying code is handled by running the provided failing test command or automatically deriving a test case from the bug description, ensuring the failure is documented and confirmed prior to applying any repairs.

Can I choose different verification depths for running npm tests after a bug fix?

You can choose different verification depths for running npm tests by selecting quick lint and typecheck tiers, targeted test suites, or exhaustive test runs based on your urgency and confidence requirements before committing the fix.

Does the bug fix workflow generate QA reports and update project ledgers?

The bug fix workflow does generate QA reports and updates project ledgers, preparing prism-mcp context and creating necessary reporting outputs to satisfy operational guardrails during the fix-and-verify loop.

How do I commit atomic fixes with regression tests using a guided workflow?

Committing atomic fixes with regression tests is managed by orchestrating a workflow that bundles both the code repair and the newly created regression test into a single clean commit within your Git repository.