🔧 AI Nachrichten ChatGPT showing blank screen [Fix](05.09.2026 um 19:55 Uhr)
🪟 Windows TippsHow to export Outlook notes to OneNote in Windows 11(07.09.2026 um 03:03 Uhr)
⚠️ Malware / Trojaner / VirenSofort deinstallieren: Diese 19 Browser-Erweiterungen sind mit Malware verseucht(06.09.2026 um 08:00 Uhr)
🔧 AI Nachrichten Erstellen Sie mit Google Gemini Music eigene Songs per KI(07.09.2026 um 08:00 Uhr)
🕵️ Sicherheitslücken0patch liefert drei Jahre Support für Microsoft Office 2021 - BornCity(07.09.2026 um 00:15 Uhr)
🔧 AI Nachrichten ChatGPT showing blank screen [Fix](05.09.2026 um 19:55 Uhr)
🪟 Windows TippsHow to export Outlook notes to OneNote in Windows 11(07.09.2026 um 03:03 Uhr)
⚠️ Malware / Trojaner / VirenSofort deinstallieren: Diese 19 Browser-Erweiterungen sind mit Malware verseucht(06.09.2026 um 08:00 Uhr)
🔧 AI Nachrichten Erstellen Sie mit Google Gemini Music eigene Songs per KI(07.09.2026 um 08:00 Uhr)
🕵️ Sicherheitslücken0patch liefert drei Jahre Support für Microsoft Office 2021 - BornCity(07.09.2026 um 00:15 Uhr)

🔧 Programmierung 🕛 kürzlich 5 Min Lesezeit
0

I open-sourced 24 QA skills for Claude Code — from spec to release

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

TL;DR — I just open-sourced QA Claude Skill — 24 production-grade QA skills for .







The problem



For two years I've been iterating a personal Claude Code workspace for QA work — bug reports, test plans, review checklists, regression matrices. It saved me hours every week.



But every time a colleague asked "how do you write a test plan that fast?" — handing them my workspace meant they got dozens of files hard-coded with my JIRA project key, my Slack user ID, my AWS bucket. Useless to anyone else.



So I spent the last two weeks extracting 24 skills into a properly generalized, open-source repo. Drop in your team's IDs via config.json and it works for any team, any stack.






What's in the box



24 skills across 8 categories:












































Category Skills

Test Design (8)
test-master · flutter-test-master · test-review · regression-test · speckit-to-tc · tc-version-diff · sheet-md-sync · smoke-test-analyzer

Automation (3)
test-automation · flutter-test-automation · tc-to-pytest

Bug Management (1)
bug-report

Quality Quantification (2)
mutation-testing · property-based-test-gen

Reporting (1)
publish-regression

Performance & Security (3)
performance-test-gen · security-scan · api-contract-test

CI Health (2)
visual-regression-gen · flaky-test-hunter

Quality Specialties (4)
a11y-audit · localization-test · push-notification-test · test-data-factory





What it actually does



Each skill activates on natural language triggers. Some examples:






1. "I want to file a bug"



The bug-report skill walks you through RIDER format (Reproduction / Impact / Device / Expected vs Actual / References), checks JIRA for duplicates, does root-cause analysis from git history, creates the ticket with the right priority, and sends a Slack DM — in one conversation.






2. "Plan tests for this new feature"



test-master reads your JIRA ticket (or your description), scans both iOS and Android repos for affected modules, designs a test pyramid (70% Unit / 20% Integration / 10% UI), generates black-box + white-box test cases in Google Sheets, identifies coverage gaps against existing tests, and builds an automation ROI roadmap.



It also enforces a11y must-checks per UI feature (Dynamic Type / VoiceOver / contrast / touch targets) — no more "we forgot accessibility" at the end of the sprint.






3. "Are my tests actually catching bugs?"



mutation-testing runs mutmut on your Python backend. It changes < to <=, True to False, or numeric literals — then re-runs your pytest. If your tests still pass with the broken code, that mutation survived = your TCs have fake coverage.



Then property-based-test-gen takes those survived mutations and generates hypothesis strategies that fuzz 200 inputs per test to close the gap.






4. "Which tests should run on every PR?"



smoke-test-analyzer scans your existing test suite (iOS XCUITest / Android Espresso / pytest), scores each test on 5 weighted criteria (criticality / speed / stability / independence / coverage value), and tiers them:





  • T0 PR Smoke (< 3 min) — runs every PR


  • T1 Daily (< 10 min) — runs nightly


  • T2 Release (< 60 min) — pre-release full regression


  • T3 Manual — exploratory, visual, a11y



Then it generates .xctestplan for iOS or Gradle filters for Android.






Three modes for any tool stack



Not every team has the same MCP servers installed. Same skills, three modes:
























Mode When to use
full-mcp You have Atlassian + Slack + Google Workspace MCPs
partial-mcp Some MCPs missing — skills degrade gracefully
markdown-only Solo dev / no MCP / pure documentation flow


The markdown-only mode is what makes this actually portable — every skill can still produce useful Markdown reports under .claude/testing/ without external dependencies. Solo developers can use the full suite without setting up anything.






6 ready-to-use presets






CODE
cp config/presets/full-stack.json     config/config.json   # All MCPs
cp config/presets/jira-only.json config/config.json # JIRA only
cp config/presets/markdown-only.json config/config.json # Pure docs
cp config/presets/startup.json config/config.json # Small startup
cp config/presets/enterprise.json config/config.json # 5 team boards
cp config/presets/government.json config/config.json # High-compliance









Why I made it bilingual + 简体



I'm Taiwanese, and most of the test-engineering content out there is English-first. So every skill ships with:





  • SKILL.md — Traditional Chinese (primary)


  • SKILL.en.md — English mirror


  • concept-zh.md — Beginner intros for unfamiliar concepts (mutation testing, property-based testing, spec-driven dev, test tiering)



The README is in English (primary), Traditional Chinese, and Simplified Chinese.






The license model



I went with a dual license:




  • 🟢 MIT — Personal use / education / research / non-profits / 30-day evaluation / open-source contributions

  • 🔴 Commercial — For-profit company internal use, paid products, SaaS, paid consulting





I'd love to hear what skills are missing for your team's stack — drop an issue or comment below.



If this saves your team time, you can buy me a coffee ☕ — but a ⭐ on the repo helps more.






This is a community / personal project for Claude Code users — NOT an official Anthropic product.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 51%
🟡 In Evaluierung 33%
🟢 Keine Auswirkung 12%
Spannende Innovation 5%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
ChatGPT showing blank screen [Fix]
1 Quelle
How to export Outlook notes to OneNote in Windows 11
1 Quelle
Excel keeps people on Windows, and a Linux distro creator wants Microsoft to end that
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I open-sourced 24 QA skills for Claude Code — from spec to release

Thematisch verwandte Begriffe: opensourced, skills, Claude, Code · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...