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 vaquarkhan/Fullstack-development-agent-skills --skill fullstack-testing-and-quality-gatesgit clone --depth 1 https://github.com/vaquarkhan/Fullstack-development-agent-skillsWrote 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/vaquarkhan/fullstack-development-agent-skills/fullstack-testing-and-quality-gates)<a href="https://agentmods.dev/skills/vaquarkhan/fullstack-development-agent-skills/fullstack-testing-and-quality-gates"><img src="https://agentmods.dev/badge/skills/vaquarkhan/fullstack-development-agent-skills/fullstack-testing-and-quality-gates.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.00037 | $0.00559 |
| Opus 5 | $0.00018 | $0.00280 |
| Sonnet 5 | $0.00007 | $0.00112 |
| Haiku 4.5 | $0.00004 | $0.00056 |
Grade A, and why
fullstack-testing-and-quality-gates 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 yesterday.
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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fullstack Testing And Quality Gates
Use When
- New fullstack features are being delivered
- Teams need predictable pre-merge and pre-release gates
- Regressions occur between frontend and backend integration points
Workflow
- Map risk by feature area, user path, and service dependency.
- Define layered tests: unit, component, contract, integration, and end-to-end.
- Prioritize deterministic tests for core flows and flaky-test elimination.
- Build CI gates for linting, type checks, tests, coverage thresholds, and security checks.
- Add release smoke tests for production-like environments.
- Capture evidence and failure triage guidance in pull request templates.
Test Coverage Model
- Unit tests for domain rules and utility logic
- Component tests for UI state transitions and accessibility behavior
- Contract tests for request and response compatibility
- Integration tests for API, database, and queue boundaries
- End-to-end tests for critical business journeys only
Required Checks
- Contract changes include backward compatibility or migration note
- Coverage thresholds exist for changed modules
- Flaky tests are quarantined with an owner and remediation date
- CI failures include actionable logs and reproduction steps
Decision Framework
- Map tests to risk: unit for rules, contract for APIs, integration for boundaries, E2E only for revenue-critical journeys.
- Block merge on lint, typecheck, unit, and contract suites; gate release on smoke and migration compatibility tests.
- Quarantine flaky tests with owner and SLA; never silently retry without tracking flake rate.
- Require backward-compatibility proof when contracts or schemas change.
Common Rationalizations And Rebuttals
- "E2E covers everything." -> E2E is slow and brittle; lean on contracts and integration for breadth.
- "Coverage percentage is the goal." -> Covered nonsense tests provide false confidence; assert behavior and contracts.
- "We can skip gates for hotfixes." -> Hotfixes cause most regressions; expedite with scoped gates, don't remove them.
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.
- yesterday First seen · 64 lines · 37 tokens per session scan A 00ec012956fe
fullstack-testing-and-quality-gates is a skill published in the GitHub repository vaquarkhan/Fullstack-development-agent-skills (2 stars, last pushed 2d ago), licensed MIT. It adds 37 tokens to every session and 559 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
cometchat-native-testing
Testing patterns for CometChat React Native — Jest + React Native Testing Library setup, mocking the UI Kit + SDK, testing custom bubbles / headers / composer actions, snapshot pitfalls, E2E with Detox vs Maestro, and CI integration. Covers what to test vs what to skip.
cometchat-flutter-v5-testing
Testing patterns for CometChat Flutter UIKit v5 (GetX-based). Covers fluttertest (built-in), mocktail for SDK mocking, widget tests around CometChat widgets, integrationtest for real-device flows, golden tests for theming, and CI on GitHub Actions / Codemagic. Sister skill of cometchat-flutter-v6-testing — the cohorts…
cometchat-flutter-v6-testing
Testing patterns for CometChat Flutter UIKit v6 (stable, Bloc-based). Covers fluttertest + bloctest for Bloc unit tests, mocktail for SDK mocking, widget tests around the Bloc-driven CometChat widgets, integrationtest for real-device flows, golden tests for theming, and CI on GitHub Actions / Codemagic. Sister skill…
cometchat-ios-testing
Testing patterns for CometChat iOS UI Kit v5 in Swift / SwiftUI / UIKit projects. Covers XCTest setup, mocking CometChatSDK + CometChatUIKitSwift via protocols, snapshot testing with iOSSnapshotTestCase, async/await test helpers, UI testing for full chat flows on simulators, and CI on Xcode Cloud / GitHub Actions.
cometchat-react-testing
Testing patterns for CometChat React UI Kit v6 in Vite / Next.js / React Router / Astro projects. Covers Vitest + React Testing Library setup, mocking @cometchat/chat-sdk-javascript and @cometchat/chat-uikit-react, Playwright e2e for full chat flows, the chat-specific assertions (init resolves before render, error UI…
JMeter Load Testing
Load and performance testing skill using Apache JMeter, covering test plans, thread groups, assertions, listeners, timers, and distributed testing.