enterprise-test-suites

enterprise-test-suites is a skill for Claude Code from saitarrun/Devforge-ai. It costs 47 tokens per session (917 once invoked), scanned A, original, Apache-2.0.

A testing plan covering small unit tests, tests between connected parts, full browser workflows, API agreements, failure simulations, load tests, mutation tests, and security fuzzing. A test suite is a collection of automated checks for software.

In plain words
What is it for?
Use it to design or implement broad test coverage for critical applications, including unit, integration, end-to-end, contract, chaos, load, mutation, and fuzz tests.
Why use it?
It helps reveal different kinds of defects, from a broken function to performance problems, unexpected failures, or malformed input.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the devforge-ai plugin — 48 skills, 17 commands, 10 agents shipped together

Good fit Use it to design or implement broad test coverage for critical applications, including unit, integration, end-to-end, contract, chaos, load, mutation, and fuzz tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saitarrun/devforge-ai/enterprise-test-suites
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 saitarrun/Devforge-ai --skill enterprise-test-suites
Clone the repo
git clone --depth 1 https://github.com/saitarrun/Devforge-ai

Made for: Claude Code.

Or install devforge-ai, the plugin that ships this one along with the rest of its 48 skills, 17 commands, 10 agents.

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 enterprise-test-suites

README.md
[![agentmods](https://agentmods.dev/badge/skills/saitarrun/devforge-ai/enterprise-test-suites.svg)](https://agentmods.dev/skills/saitarrun/devforge-ai/enterprise-test-suites)
Your own site
<a href="https://agentmods.dev/skills/saitarrun/devforge-ai/enterprise-test-suites"><img src="https://agentmods.dev/badge/skills/saitarrun/devforge-ai/enterprise-test-suites.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 917 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.00047 $0.00917
Opus 5 $0.00023 $0.00458
Sonnet 5 $0.00009 $0.00183
Haiku 4.5 $0.00005 $0.00092

Measured 7d ago against content hash 6eaa1ae46f72, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

enterprise-test-suites 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.

skills/enterprise-test-suites/SKILL.md · 89 lines

How it starts

The opening of the file, as written. The whole thing — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Enterprise Multi-Tier Test Suite Engineering Skill

This skill defines industry standards for implementing a resilient, multi-tiered test pyramid for mission-critical enterprise applications.


1. The Enterprise Testing Matrix

                      / \
                     /   \
                    / E2E \       → Playwright / Cypress UI workflows
                   /-------\
                  / Contract\     → Pact / OpenAPI Consumer-Provider validation
                 /-----------\
                / Integration \   → Testcontainers (Postgres, Redis, Kafka)
               /---------------\
              /      Unit       \ → Vitest / Jest / PyTest (>80% branch coverage)
             /-------------------\
            / Specialized Suites  \
           /-----------------------\
          • Chaos & Fault Injection (Simulate network drop, latency, node crash)
          • Load & Performance (k6 / Artillery latency & concurrency benchmarks)
          • Security & Property Fuzzing (Malformed payload injection)
          • Mutation Testing (Stryker / mutmut test-quality validation)

2. Test Suite Specifications

A. Unit Test Suite (*.spec.ts / *_test.go)

  • Focus: Pure business logic, domain models, mathematical formulas, and validators.
  • Rules: Fast (<5ms per test), zero external I/O, deterministic mocking.
  • Coverage: Target >80% line and branch coverage.

B. Integration Test Suite (*.integration.spec.ts)

  • Focus: Database repositories, ORM queries, cache layers, external API clients, and queue consumers.
  • Standard: Use ephemeral real dependencies with Testcontainers (Postgres, Redis, Kafka, LocalStack).
  • Invariants: Test database transactions, rollback on failure, connection pools, and migration compatibility.

C. Consumer-Driven Contract Test Suite (*.contract.spec.ts)

  • Focus: Microservices API boundaries and webhook contracts.
  • Tooling: Pact / MSW.
  • Invariants: Assert request/response schemas, error codes, and headers without deploying the full fleet.

Read the full file on GitHub · 89 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. 7d ago First seen · 89 lines · 47 tokens per session scan A 6eaa1ae46f72

Subscribe to this mod's changes

enterprise-test-suites is a skill published in the GitHub repository saitarrun/Devforge-ai (5 stars, last pushed 24d ago), licensed Apache-2.0. It adds 47 tokens to every session and 917 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-08-31.

Related

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…

lukasrepublic/agentic-foundry · 154 tokens

agent-tester

Agent skill for tester - invoke with $agent-tester.

ruvnet/ruflo · 15 tokens

android-emulator

Verify and debug native, React Native, Expo, or Flutter apps on an Android Emulator with agent-device. Use when an agent needs to launch an app, inspect its live UI, tap, type, scroll, validate a code change, collect failure evidence, or reproduce a workflow on an Android virtual device.

callstack/agent-device · 65 tokens

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

browser4-cli

Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

platonai/Browser4 · 52 tokens

qa

Browser-based QA verification. Launches a real browser, navigates the app, clicks buttons, fills forms, and tests user flows. Works as a standalone skill or as a phase end condition in campaigns. Requires Playwright (optional dependency, graceful skip if not installed).

SethGammon/Citadel · 56 tokens