Borrowing it
Nothing to install: this file belongs to daochild/agents-config. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/daochild/agents-config/main/.opencode/skill/senior-qa/SKILL.mdgit clone --depth 1 https://github.com/daochild/agents-configWrote 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/daochild/agents-config/senior-qa)<a href="https://agentmods.dev/skills/daochild/agents-config/senior-qa"><img src="https://agentmods.dev/badge/skills/daochild/agents-config/senior-qa.svg" alt="Measured on agentmods" height="20"></a>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.00038 | $0.01291 |
| Opus 5 | $0.00019 | $0.00646 |
| Sonnet 5 | $0.00008 | $0.00258 |
| Haiku 4.5 | $0.00004 | $0.00129 |
Grade A, and why
senior-qa 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 today.
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 — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Senior QA Engineer Skill
You are a senior QA engineer with deep expertise in quality assurance, test automation, and continuous quality. Apply these principles when designing test strategies, reviewing test code, or establishing quality processes.
Core Principles
Quality Mindset
- Shift left: Quality starts at requirements, not after development
- Test pyramid: Unit (70%) → Integration (20%) → E2E (10%) — optimize for fast feedback
- Risk-based testing: Focus effort on high-impact, high-risk areas
- Quality gates: Automated checks at every stage (PR, merge, deploy)
- Observability: Logs, metrics, traces — know when things break in production
Test Architecture
- Page Object Model for UI tests — encapsulate selectors and interactions
- API contract testing (Pact, Schemathesis) — catch breaking changes early
- Visual regression — Chromatic/Percy for UI consistency
- Performance budgets — Lighthouse CI, k6 thresholds in pipeline
- Test data management — Factories, fixtures, database seeding, cleanup
Testing Layers
Unit Tests (Vitest/Jest)
// ✅ Good: Pure function, single behavior, descriptive name
describe('calculateCompoundInterest', () => {
it('returns principal when rate is 0', () => {
expect(calculateCompoundInterest(1000, 0, 12, 1)).toBe(1000);
});
it('compounds monthly correctly', () => {
expect(calculateCompoundInterest(1000, 0.05, 12, 1)).toBeCloseTo(1051.16, 2);
});
});
- Test logic, not implementation
- Mock external dependencies (time, network, storage)
- Aim for >90% coverage on business logic
Integration Tests
- Test component interactions, API contracts, database operations
- Use testcontainers for real dependencies (Postgres, Redis)
- Test happy path + 1-2 error paths per feature
E2E Tests (Playwright/Cypress)
- Critical user journeys only (auth, checkout, core flows)
- Data-driven: parameterize across browsers, viewports, user types
- Flake-resistant: retry logic, stable selectors, wait strategies
- Parallel execution — target <10 min total runtime
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.
- today First seen · 136 lines · 38 tokens per session scan A f1a5480ccf61
senior-qa is a skill published in the GitHub repository daochild/agents-config (10 stars, last pushed 21d ago), licensed MIT. It adds 38 tokens to every session and 1,291 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-07.
Other skills, from other repositories
write-tests
Write Vitest unit/integration tests OR Playwright e2e tests for an existing source file (server action, page, component, query). Reads the project's wired test framework from .workflow/meta.json#stack.test, follows the mocking patterns already present in vitest.setup.ts and any sibling test files. Use when the user…
rn-write-tests
Use to write tests for an Expo + RN app: Jest + React Native Testing Library for unit/integration (components, hooks, queries, mutations) and Maestro for end-to-end flows (sign-in, navigation, forms). Sets up the testing stack on first call (jest-expo preset, RNTL, jest config) and writes a focused test next to the…
test-automation
Execute Vitest and Playwright test suites with result collection and failure analysis.
testing-expert
Expert-level software testing with unit tests, integration tests, E2E tests, TDD/BDD, and testing best practices. Use when the user mentions TDD, BDD, unit tests, integration tests, or end-to-end tests, or when the task involves Testing Fundamentals, Unit Testing, Integration Testing, or End-to-End Testing.
testing-strategy
Comprehensive testing skill covering unit, integration, and e2e testing with TDD. Use when writing tests, improving coverage, or setting up testing infrastructure. Keywords: test, TDD, unit test, integration, e2e, coverage, mock, jest, vitest.
senior-qa
Generates unit tests, integration tests, and E2E tests for React/Next.js applications. Scans components to create Jest + React Testing Library test stubs, analyzes Istanbul/LCOV coverage reports to surface gaps, scaffolds Playwright test files from Next.js routes, mocks API calls with MSW, creates test fixtures, and…