fullstack-testing-and-quality-gates

fullstack-testing-and-quality-gates is a skill for Claude Code from vaquarkhan/Fullstack-development-agent-skills. It costs 37 tokens per session (559 once invoked), scanned A, original, MIT.

A testing plan for applications with both a user interface and a backend. It defines different test levels and checks that must pass before code is merged or released.

In plain words
What is it for?
Use it to plan unit, component, contract, integration, and end-to-end tests, then set automated checks for code changes and releases.
Why use it?
It reduces regressions between the interface, APIs, databases, and other services. It also makes flaky tests and release readiness explicit.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the fullstack-development-agent-skills plugin — 129 skills, 10 commands shipped together

Good fit Use it to plan unit, component, contract, integration, and end-to-end tests, then set automated checks for code changes and releases.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vaquarkhan/fullstack-development-agent-skills/fullstack-testing-and-quality-gates
Install

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.

Any agent
npx skills add vaquarkhan/Fullstack-development-agent-skills --skill fullstack-testing-and-quality-gates
Clone the repo
git clone --depth 1 https://github.com/vaquarkhan/Fullstack-development-agent-skills

Made for: Claude Code.

Or install fullstack-development-agent-skills, the plugin that ships this one along with the rest of its 129 skills, 10 commands.

Wrote 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.

agentmods badge for fullstack-testing-and-quality-gates

README.md
[![agentmods](https://agentmods.dev/badge/skills/vaquarkhan/fullstack-development-agent-skills/fullstack-testing-and-quality-gates.svg)](https://agentmods.dev/skills/vaquarkhan/fullstack-development-agent-skills/fullstack-testing-and-quality-gates)
Your own site
<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>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured yesterday against content hash 00ec012956fe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

skills/fullstack-testing-and-quality-gates/SKILL.md · 64 lines

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

  1. Map risk by feature area, user path, and service dependency.
  2. Define layered tests: unit, component, contract, integration, and end-to-end.
  3. Prioritize deterministic tests for core flows and flaky-test elimination.
  4. Build CI gates for linting, type checks, tests, coverage thresholds, and security checks.
  5. Add release smoke tests for production-like environments.
  6. 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.

Read the full file on GitHub · 64 lines

Changes

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.

  1. yesterday First seen · 64 lines · 37 tokens per session scan A 00ec012956fe

Subscribe to this mod's changes

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.

Related

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/cometchat-skills · 63 tokens

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/cometchat-skills · 99 tokens

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/cometchat-skills · 107 tokens

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/cometchat-skills · 81 tokens

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…

cometchat/cometchat-skills · 118 tokens

JMeter Load Testing

Load and performance testing skill using Apache JMeter, covering test plans, thread groups, assertions, listeners, timers, and distributed testing.

PramodDutta/qaskills · 32 tokens