One-click install
npx skills add https://github.com/swghosh/ambient-workflows --skill test-swghosh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/swghosh/ambient-workflows/tree/main/workflows/bugfix/.claude/skills/test
Command: npx skills add https://github.com/swghosh/ambient-workflows --skill test-swghosh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill ensures a proposed bug fix actually resolves the reported issue while preventing the same bug from reappearing and catching new side effects.

Core Features & Use Cases

  • Regression testing: Creates a test that reproduces the original bug and proves it fails before the fix and passes after.
  • Comprehensive verification: Covers unit, integration, and manual reproduction of the original steps, plus performance and security checks.
  • Full suite validation: Runs the entire project test suite to detect unrelated breakages and updates formatting/linting for all modified files.
  • Documented outcomes: Writes a verification report to artifacts/bugfix/tests/verification.md with summary, results, and recommendations.

Quick Start

Run the test phase for the current bugfix workflow to generate regression tests, execute the full test suite, and write the verification report to artifacts/bugfix/tests/verification.md.

Frequently Asked Questions about test

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

FAQPage Schema
How do I verify a bugfix and prevent regressions across unit and integration tests?

To verify a bugfix and prevent regressions, add a failing-then-passing regression test, run the full test suite, apply lint/format checks, and document results in artifacts/bugfix/tests/verification.md.

What's the best way to create regression tests that reproduce original bugs?

Create regression tests by surveying existing test patterns, writing a test that proves the bug fails before the fix and passes after, then running the entire suite to detect unrelated breakages.

Does bugfix verification include performance validation and security review checks?

Yes, bugfix verification includes performance validation and security review checks alongside unit, integration, and manual reproduction of original steps to ensure comprehensive coverage.

How do I document test coverage and bugfix verification outcomes?

Document bugfix verification outcomes by writing a report to artifacts/bugfix/tests/verification.md containing a summary, results, and recommendations after running the full test suite.

Why should I run the full test suite after applying a bugfix?

Running the full test suite after a bugfix detects unrelated breakages and side effects across unit and integration scenarios, ensuring the fix does not introduce new regressions.

Can I apply lint and format checks to modified files during bugfix verification?

Yes, the bugfix verification process applies lint and format checks to all modified files and updates formatting as part of the comprehensive validation workflow.