qaskills

by PramodDuttaVerified

QA Skills Directory QA Skills is a curated directory of testing-specific skills for AI coding agents (Claude Code, Cursor, Copilot, etc.).

105
Stars
4
Forks
TypeScript
Language
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/PramodDutta/qaskills

Getting Started

Guides for using skills like qaskills.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

QASkills.sh

The Curated QA Skills Directory for AI Coding Agents

The curated QA skills directory for Claude Code, Cursor, Copilot, Windsurf, and 27+ AI coding agents.

npm version License: MIT Website YouTube

Website | Skills Directory | Leaderboard | Get Started


Why QASkills.sh?

Among 49,000+ skills on Vercel's skills.sh, barely any are dedicated to QA testing. QASkills.sh fills that gap — a curated, QA-specific skills directory that gives your AI coding agent expert-level testing knowledge with a single command.

npx @qaskills/cli add playwright-e2e
  ✓ Detected agent: Claude Code
  ✓ Installing playwright-e2e v1.0.0...
  ✓ Skill installed successfully!

Your AI agent now writes Playwright tests using Page Object Model, fixtures, and best practices — automatically.


Quick Start

1. Install a skill (no global install needed)

npx @qaskills/cli add playwright-e2e

2. Or install globally for faster access

npm i -g @qaskills/cli
qaskills add playwright-e2e

3. Search for skills

npx @qaskills/cli search "api testing"

4. List installed skills

npx @qaskills/cli list

5. Remove a skill

npx @qaskills/cli remove playwright-e2e

6. Or use the MCP server (search and install from inside your agent)

Listed in the official MCP registry as io.github.PramodDutta/qaskills.

# Claude Code
claude mcp add qaskills -- npx -y @qaskills/mcp
// Any MCP client (Cursor, Windsurf, etc.)
{
  "mcpServers": {
    "qaskills": { "command": "npx", "args": ["-y", "@qaskills/mcp"] }
  }
}

Your agent gets six tools: search_skills, get_skill, get_skill_content, install_skill, list_categories, get_leaderboard. See packages/mcp.


Feature Highlights

FeatureDescription
27+ Agents SupportedClaude Code, Cursor, Copilot, Windsurf, Codex, Aider, Cline, Devin, and more
Auto-DetectionCLI detects which AI agent you're using and installs to the right config directory
20+ Curated SkillsExpert-reviewed QA testing patterns covering E2E, API, unit, performance, security, and more
Skill PacksInstall bundles of related skills in one command
Publish Your OwnCreate and share skills via the dashboard or CLI
Open SourceMIT licensed, community-driven

Supported Frameworks

Playwright Cypress Selenium Jest Pytest k6 JMeter Appium Postman REST Assured Cucumber Axe-core Pact

Supported AI Agents (27+)

AgentStatusAgentStatus
Claude CodeCursor
GitHub CopilotWindsurf
Codex CLIAider
ContinueCline
Zed AIBolt.new
Lovablev0
DevinSourcegraph Cody
Replit AgentAmazon Q Developer
JetBrains AIGemini Code Assist
Roo CodeAugment Code
TraeAnd more...

Available Skills

#SkillCategoryQuality
1Playwright E2E TestingE2E, Visual92/100
2Jest Unit TestingUnit91/100
3Cypress E2E TestingE2E90/100
4OWASP Security TestingSecurity89/100
5Playwright API TestingAPI88/100
6Pytest PatternsUnit, Integration88/100
7k6 Performance TestingPerformance87/100
8Visual Regression TestingVisual86/100
9Axe-core AccessibilityAccessibility86/100
10Selenium Java TestingE2E85/100
11REST Assured APIAPI85/100
12CI/CD Pipeline ConfigDevOps85/100
13Appium Mobile TestingMobile84/100
14Postman API TestingAPI84/100
15Contract Testing (Pact)Contract84/100
16Test Data GenerationUtility83/100
17JMeter Load TestingLoad82/100
18BDD/Cucumber PatternsBDD82/100
19Test Plan GenerationProcess80/100
20Bug Report WritingProcess78/100

Browse all skills →


Skill Packs

Install multiple skills at once with curated packs:

PackIncludesUse Case
Full Stack QAPlaywright + Cypress + k6 + OWASP + Jest + Pytest + CI/CDComplete QA coverage
Complete Playwright SuiteE2E + API + Visual + AccessibilityPlaywright-focused teams
API Testing ToolkitPlaywright API + REST Assured + Postman + Pact + k6Backend & API testing

How It Works

1. SEARCH   →  Browse skills on qaskills.sh or search via CLI
2. INSTALL  →  npx @qaskills/cli add <skill-name>
3. TEST     →  Your AI agent now has QA expertise built-in

The CLI auto-detects which AI agent you're using (Claude Code, Cursor, Copilot, etc.) and installs the skill's SKILL.md to the correct configuration directory. Your agent reads this file and follows the testing patterns automatically.


Publish Your Own Skill

Via the Website

  1. Go to qaskills.sh/dashboard/publish
  2. Sign in with GitHub
  3. Fill in the 5-step form
  4. Publish!

Via the CLI

# Scaffold a new SKILL.md
npx @qaskills/cli init my-skill

# Edit the generated SKILL.md with your testing patterns

# Publish to the registry
npx @qaskills/cli publish

SKILL.md Format

---
name: My Testing Skill
description: What this skill teaches AI agents
version: 1.0.0
license: MIT
testingTypes: [E2E, API]
frameworks: [Playwright]
languages: [TypeScript]
agents: [claude-code, cursor, copilot]
---

# My Testing Skill

Instructions for the AI agent go here...

Tech Stack

LayerTechnology
FrameworkNext.js 15 (App Router)
UIshadcn/ui + Tailwind CSS v4
DatabaseNeon Serverless Postgres + Drizzle ORM
SearchTypesense
AuthClerk
CacheUpstash Redis
HostingVercel
CLITypeScript + Commander.js
MonorepoTurborepo + pnpm

Project Structure

qaskills/
├── packages/
│   ├── web/              # Next.js 15 website & API
│   ├── cli/              # @qaskills/cli (npm package)
│   ├── shared/           # Types, constants, Zod schemas, parsers
│   ├── sdk/              # Programmatic TypeScript SDK
│   └── skill-validator/  # SKILL.md validation
├── seed-skills/          # 20+ curated QA skill definitions
└── landingpage/          # Marketing site

Contributing

We welcome contributions! Here's how to get involved:

  1. Add a new skill — Create a SKILL.md and publish via the dashboard or CLI
  2. Improve existing skills — Submit PRs to enhance testing patterns and coverage
  3. Report bugsOpen an issue on GitHub
  4. Feature requests — Open an issue or start a discussion

Local Development

# Clone the repo
git clone git@github.com:PramodDutta/qaskills.git
cd qaskills

# Install dependencies (requires pnpm 9.15+ and Node 20+)
pnpm install

# Build shared package first (other packages depend on it)
pnpm --filter @qaskills/shared build

# Start all dev servers
pnpm dev

# Run tests
pnpm test

# Lint & format
pnpm lint
pnpm format

Built by The Testing Academy

189K+ YouTube Subscribers | QA & Test Automation Education

YouTube | Website | Twitter


MIT License | Made with testing in mind

Frequently Asked Questions

What is qaskills?

qaskills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by PramodDutta. QA Skills Directory QA Skills is a curated directory of testing-specific skills for AI coding agents (Claude Code, Cursor, Copilot, etc.). It has 105 GitHub stars.

Is qaskills safe to use?

Yes. qaskills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install qaskills?

Clone the repository with "git clone https://github.com/PramodDutta/qaskills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is qaskills written in?

qaskills is primarily written in TypeScript. It is open-source under PramodDutta on GitHub, so you can review or fork the full source.

Are there alternatives to qaskills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh qaskills against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details