Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add vasilyu1983/AI-Agents-public --skill qa-testing-strategygit clone --depth 1 https://github.com/vasilyu1983/AI-Agents-publicWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/vasilyu1983/ai-agents-public/qa-testing-strategy)<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/qa-testing-strategy"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/qa-testing-strategy/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/vasilyu1983/ai-agents-public/qa-testing-strategy"><img src="https://agentmods.dev/badge/skills/vasilyu1983/ai-agents-public/qa-testing-strategy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk pass
- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00035 | $0.02900 |
| Opus 5 | $0.00017 | $0.01450 |
| Sonnet 5 | $0.00007 | $0.00580 |
| Haiku 4.5 | $0.00003 | $0.00290 |
Grade A, and why
qa-testing-strategy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QA Testing Strategy
Risk-based quality engineering guidance for modern software delivery. Use this skill to decide what to test, at which layer, with which gates, and how to keep the signal trustworthy.
Start with references/operational-playbook.md for the navigation hub. Use current official sources from data/sources.json when you need vendor or standards guidance.
Scope
- Create or update a risk-based test strategy
- Choose a test shape (pyramid, trophy, honeycomb) based on architecture and defect origin
- Define merge gates, deploy gates, and release evidence — including merge queue interaction
- Choose the smallest effective layer: unit, component, contract, schema fuzzing, integration, E2E, property-based
- Make failures diagnosable with artifacts, correlation IDs, traces, and ownership
- Operationalize suite health: flake SLO, quarantine policy, execution budgets, dashboards
Use Instead
| Need | Skill |
|---|---|
| Implement or debug Playwright suites | qa-testing-playwright |
| Design API contract suites in depth | qa-api-testing-contracts |
| Debug failing tests or incidents | qa-debugging |
| Add observability, telemetry, or tracing | qa-observability |
| Test LLM agents or evaluations | qa-agent-testing |
| Mobile-specific strategy or automation | qa-testing-mobile |
| Security audit or threat-model depth | software-security-appsec |
| CI/CD pipeline design and infra | ops-devops-platform |
Quick Reference
| Layer | Goal | Typical Use |
|---|---|---|
| Unit | Prove logic and invariants fast | Pure functions, domain rules, validators |
| Component | Validate UI behavior in a real browser with narrow scope | UI components, state transitions, accessibility smoke |
| Contract | Prevent breaking changes across service boundaries | OpenAPI, AsyncAPI, JSON Schema, Protobuf |
| Schema fuzzing | Stress the API contract with generated valid and invalid inputs | Request/response edge cases, parser and validation drift |
| Property-based | Verify universal invariants across generated input spaces | Serialization round-trips, numeric contracts, state-machine invariants, AI-code edge cases |
| Integration | Validate real boundaries and dependencies | API + DB, queues, adapters, auth flows |
| E2E | Validate thin critical journeys | Sign-up, checkout, publish, payment, admin recovery |
| Performance | Enforce budgets and capacity | Load, stress, soak, latency regression |
| Visual | Catch intentional vs accidental UI changes | Stable pages, design-system components |
| Accessibility | Check for common WCAG 2.2 failures early | axe smoke + manual audit plan |
| Security | Catch common web/API vulnerabilities early | SAST, DAST smoke, auth and dependency checks |
What ships with it
35 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 337 B
- assets/automation-pipeline-template.md 776 B
- assets/bdd/template-cucumber-gherkin.md 13 KB
- assets/component/template-vitest-browser.md 1.8 KB
- assets/e2e/template-playwright.md 699 B
- assets/integration/template-api-integration.md 19 KB
- assets/performance/template-k6-load-testing.md 648 B
- assets/runbooks/template-flaky-test-triage-deflake-runbook.md 4.3 KB
- assets/runbooks/template-release-coverage-audit.md 897 B
- assets/template-test-case-design.md 2.8 KB
- assets/test-strategy-template.md 3.3 KB
- assets/unit/template-jest-vitest.md 11 KB
- assets/visual-regression/template-visual-testing.md 18 KB
- data/sources.json 15 KB
- learnings.consolidated.md 595 B
- learnings.md 617 B
- references/chaos-resilience-testing.md 12 KB
- references/compliance-testing.md 27 KB
- references/component-testing-browser-mode.md 1.7 KB
- references/comprehensive-testing-guide.md 1.2 KB
- references/contract-testing.md 5.5 KB
- references/feature-matrix-vs-test-matrix-gate.md 1.2 KB
- references/observability-driven-testing.md 16 KB
- references/operational-playbook.md 21 KB
- references/playwright-webapp-testing.md 179 B
- references/production-testing-and-shift-right.md 14 KB
- references/property-based-testing.md 10.0 KB
- references/quality-metrics-dashboard.md 27 KB
- references/reliability-theory-applied.md 42 KB
- references/schema-aware-api-fuzzing.md 1.5 KB
- references/shift-left-testing.md 17 KB
- references/synthetic-test-data.md 2.6 KB
- references/test-automation-patterns.md 14 KB
- references/test-environment-management.md 20 KB
- references/test-impact-analysis.md 15 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 200 lines · 35 tokens per session scan A e3182a92fd1e
qa-testing-strategy is a skill published in the GitHub repository vasilyu1983/AI-Agents-public (87 stars, last pushed 8d ago), licensed MIT. It adds 35 tokens to every session and 2,900 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
sd-test
The disciplined test-recipe gate the generic agent runs for the software-delivery TEST step (/foundry:sd-test, step 8). A PROCEDURE — invoke the MERGED foundry-verify.py executor, read the run record's records whose phase == "testrecipe" (unit / integration / e2e), surface the profile's numeric coveragegate and advise…
test-architecture
Test organization, fixtures, factories (factoryboy/faker), test isolation, database cleanup, and test configuration. Use when the user is setting up a test suite, organizing test files, creating test fixtures, or dealing with test isolation issues.
screen-reader-testing
Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology support.
web3-testing
Test smart contracts comprehensively using Hardhat and Foundry with unit tests, integration tests, and mainnet forking. Use when testing Solidity contracts, setting up blockchain test suites, or validating DeFi protocols.
temporal-python-testing
Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.
data-quality-frameworks
Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts.