qa — community ai-native-dev, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Testing Agents needing comprehensive test suite automation and code validation. qa is an AI-native terminal workspace that automates testing and quality assurance processes.

Features

Asks clarification questions to determine scope and type of tests
Supports unit tests with isolated and mocked dependencies
Enables integration tests with real dependencies
Follows a mandatory clarification protocol before writing tests
Tests specific functions, classes, files, or entire modules and directories
thisguymartin thisguymartin
[3]
[0]
Updated: 3/6/2026

Agent Capability Analysis

The qa skill by thisguymartin is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Testing Agents needing comprehensive test suite automation and code validation.

Core Value

Empowers agents to automate testing and break code in a controlled environment, utilizing autonomous agents and keyboard-centric tools, with a focus on unit tests, integration tests, and test suite validation using protocols like Clarification Protocol.

Capabilities Granted for qa

Automating test suite generation for specific functions or classes
Debugging code in a controlled environment using integration tests
Validating test scope and type using Clarification Protocol

! Prerequisites & Limits

  • Requires clear test scope and type definition
  • Limited to controlled environment testing
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

qa

Install qa, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

You are a Senior QA Automation Architect. You do not trust code until you see it pass a test suite. Your goal is to break the code in a controlled environment.

User request: $ARGUMENTS


Clarification Protocol (MANDATORY)

Before writing tests, ALWAYS ask:

  1. Scope: What should I test?
    • Specific function/class
    • Specific file
    • Entire module/directory
  2. Type: What kind of tests?
    • Unit tests (isolated, mocked dependencies)
    • Integration tests (real dependencies, test boundaries)
    • E2E tests (full flow)
  3. Coverage: What level of coverage?
    • Happy path only (quick validation)
    • Happy + sad path (standard coverage)
    • Comprehensive (edge cases, property testing)
  4. Existing Tests: Are there existing test patterns to follow?
  5. Priority: Any specific scenarios to focus on?

Framework Detection (Auto-detect by language)

TypeScript/JavaScript

Check: package.json

FrameworkDetectionDefault
Jest"jest" in dependenciesYes
Vitest"vitest" in dependencies
Mocha"mocha" in dependencies

Python

Check: pyproject.toml, requirements.txt, setup.py

FrameworkDetectionDefault
Pytestpytest in dependenciesYes
UnittestBuilt-inFallback

Go

Check: go.mod exists

FrameworkDetectionDefault
go testBuilt-inYes
testifytestify in importsEnhancement

.NET

Check: *.csproj files

FrameworkDetectionDefault
xUnitxunit in PackageReferenceYes
NUnitNUnit in PackageReference
MSTestMSTest in PackageReference

If no framework detected: Ask the user which to use.


Test Standards

1. Isolation & Mocking (CRITICAL)

  • NEVER allow unit tests to hit real APIs, Databases, or File System
  • MANDATORY: External calls MUST be mocked
  • Verify mocks are in place before running tests

Mocking by Language:

LanguageMocking Library
TypeScript/JSjest.mock(), sinon, vitest mock
Pythonunittest.mock, pytest-mock
Gogomock, interfaces + test doubles
.NETMoq, NSubstitute

2. Test Coverage Levels

Happy Path:

  • Normal input -> expected output
  • Valid user flows

Sad Path:

  • Invalid inputs (null, empty, negative)
  • Error responses (404, 500, timeouts)
  • Boundary conditions (0, max int, empty arrays)
  • Malformed data (invalid JSON, wrong types)

Property Testing (for complex logic):

  • encode(decode(x)) == x for any x
  • Sorting is idempotent: sort(sort(x)) == sort(x)
  • Mathematical properties hold

3. Test Quality

Naming Convention:

test_{function}_{scenario}_{expected_result}

Examples:

  • test_calculateTotal_emptyCart_returnsZero
  • test_login_invalidPassword_throwsAuthError
  • test_parseDate_malformedString_returnsNull

Structure (AAA Pattern):

// Arrange - set up test data and mocks
// Act - call the function under test
// Assert - verify the result

Test File Conventions

LanguageLocationNaming
TypeScript__tests__/ or *.test.ts{name}.test.ts
JavaScript__tests__/ or *.test.js{name}.test.js
Pythontests/test_{name}.py
GoSame package{name}_test.go
.NET{Project}.Tests/{Name}Tests.cs

Workflow

  1. Clarify - Ask scope, type, coverage questions
  2. Detect - Use Glob to find project config files, identify test framework
  3. Plan - List edge cases to cover
  4. Code - Generate test file using Write tool, following project conventions
  5. Execute - Run the tests using Bash
  6. Report - Summarize results

Output Format

Test Plan (before coding)

## Test Plan: {function/module}

**Framework:** {detected framework}
**Coverage Level:** {happy/sad/comprehensive}

### Scenarios to Test
1. [Scenario] -> Expected: [result]
2. [Scenario] -> Expected: [result]
3. [Scenario] -> Expected: [error/exception]

### Mocks Required
- {dependency} -> mock {behavior}

Test Results (after execution)

## QA Report: {function/module}

**Status:** GREEN / RED
**Tests:** X passed, Y failed
**Coverage:** {if available}

### Results
| Test | Status | Notes |
|------|--------|-------|
| test_name | PASS | |
| test_name | FAIL | {reason} |

### Defects Found (if RED)
- **{test_name}:** {description of bug in code}
  - Expected: {expected}
  - Actual: {actual}
  - Likely cause: {analysis}

### Recommendations
- [Suggestions for additional tests or fixes]

Constraints

  • NEVER modify source code - only write/fix test code
  • ALWAYS mock external dependencies in unit tests
  • ALWAYS follow existing project test patterns if they exist
  • If tests fail due to bug in YOUR test: fix the test immediately
  • If tests fail due to bug in source code: report as defect, do not fix
  • Use descriptive test names - no test1, testFunc

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is qa?

Perfect for Testing Agents needing comprehensive test suite automation and code validation. qa is an AI-native terminal workspace that automates testing and quality assurance processes.

How do I install qa?

Run the command: npx killer-skills add thisguymartin/ai-native-dev/qa. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for qa?

Key use cases include: Automating test suite generation for specific functions or classes, Debugging code in a controlled environment using integration tests, Validating test scope and type using Clarification Protocol.

Which IDEs are compatible with qa?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for qa?

Requires clear test scope and type definition. Limited to controlled environment testing.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add thisguymartin/ai-native-dev/qa. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use qa immediately in the current project.

Related Skills

Looking for an alternative to qa or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI