smoke-test-runner

smoke-test-runner is a skill for Claude Code from FortiumPartners/ensemble. It costs 0 tokens per session (559 once invoked), scanned A, original, MIT.

A smoke-test coordinator that runs several quick checks for an application in a defined order. Smoke tests are basic checks used to see whether important parts of a system work after a change or deployment.

In plain words
What is it for?
It is for checking APIs, databases, external services, authentication, and key end-to-end user journeys.
Why use it?
It gathers separate checks into one run and stops when an early dependency fails, making release checks easier to interpret.

Skill for Claude Code

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

Part of the ensemble-e2e-testing plugin — 7 skills, 1 agent shipped together

Good fit It is for checking APIs, databases, external services, authentication, and key end-to-end user journeys.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fortiumpartners/ensemble/smoke-test-runner
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 FortiumPartners/ensemble --skill smoke-test-runner
Clone the repo
git clone --depth 1 https://github.com/FortiumPartners/ensemble

Made for: Claude Code.

Or install ensemble-e2e-testing, the plugin that ships this one along with the rest of its 7 skills, 1 agent.

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 smoke-test-runner

README.md
[![agentmods](https://agentmods.dev/badge/skills/fortiumpartners/ensemble/smoke-test-runner/github.svg)](https://agentmods.dev/skills/fortiumpartners/ensemble/smoke-test-runner)
Your own site
<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/smoke-test-runner"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/smoke-test-runner/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.

agentmods 80×15 button for smoke-test-runner

Your own site · 80×15
<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/smoke-test-runner"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/smoke-test-runner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 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.00000 $0.00559
Opus 5 $0.00000 $0.00280
Sonnet 5 $0.00000 $0.00112
Haiku 4.5 $0.00000 $0.00056

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

Security

Grade A, and why

smoke-test-runner 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/orchestrate-smoke-tests.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

packages/e2e-testing/skills/smoke-test-runner/SKILL.md · 80 lines

How it starts

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

Smoke Test Runner Skill

Quick Reference - Orchestrates all smoke test categories

Mission

Orchestrate execution of all smoke test categories (API, Database, External Services, Auth, Critical Paths) in the correct order with early exit on failure.

Core Capabilities

  • Sequential Execution: Execute smoke tests in dependency order
  • Early Exit: Stop on first failure to save time
  • Skill Invocation: Invoke specialized smoke test skills
  • Result Aggregation: Collect and report all test results
  • Performance Tracking: Track execution time per category

Execution Order

  1. API Health (2-3 minutes): Validate API endpoints responding
  2. Database (1-2 minutes): Verify database connectivity and health
  3. External Services (2-3 minutes): Test third-party integrations
  4. Auth (1-2 minutes): Validate authentication and authorization
  5. Critical Paths (3-5 minutes): Test end-to-end user journeys

Total Target: ≤15 minutes (all 5 categories)

Quick Start

const { SmokeTestRunner } = require('./scripts/orchestrate-smoke-tests.js');

const runner = new SmokeTestRunner({
  environment: 'staging',
  stopOnFirstFailure: true
});

const result = await runner.executeAll();

if (result.passed) {
  console.log('✅ All smoke tests passed');
  console.log(`Total time: ${result.totalDuration}ms`);
}

Pass/Fail Criteria

Pass: All 5 smoke test categories must pass

  • ✅ API health checks passing
  • ✅ Database connectivity and integrity validated
  • ✅ External services responding
  • ✅ Auth flows working correctly
  • ✅ Critical paths completing successfully

Fail: Any category failure blocks deployment

  • ❌ Any smoke test category fails
  • ❌ Execution exceeds timeout (15 minutes)

Output Format

{
  passed: true,
  totalDuration: 850000,  // 14 minutes 10 seconds
  categoriesExecuted: 5,
  categoriesPassed: 5,
  categoriesFailed: 0,
  results: {
    api: { passed: true, duration: 180000 },
    database: { passed: true, duration: 120000 },
    externalServices: { passed: true, duration: 200000 },
    auth: { passed: true, duration: 100000 },
    criticalPaths: { passed: true, duration: 250000 }
  }
}

Read the full file on GitHub · 80 lines

Files

What ships with it

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

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. 5d ago First seen · 80 lines · 0 tokens per session scan A f0108f3f576c

Subscribe to this mod's changes

smoke-test-runner is a skill published in the GitHub repository FortiumPartners/ensemble (12 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 559 tokens. 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.

Related

Other skills, from other repositories

bmad-qa-generate-e2e-tests

Generate end to end automated tests for existing features. Use when the user says "create qa automated tests for [feature]".

LarsCowe/bmalph · 35 tokens

responsive-audit

Responsive audit: test pages at 375/768/1024px breakpoints via Playwright. Checks overflow, tap targets, sidebar collapse, text reflow, WCAG 1.4.4 zoom.

marcoguillermaz/Tierward · 0 tokens

e2e-testing

Guide for running end-to-end tests of the Qwen Code CLI, including headless mode, MCP server testing, and API traffic inspection. Use this skill whenever you need to verify CLI behavior with real model calls, reproduce user-reported bugs end-to-end, test MCP tool integrations, or inspect raw API request/response…

QwenLM/qwen-code · 94 tokens

terminal-capture

Automates terminal UI screenshot testing for CLI commands. Applies when reviewing PRs that affect CLI output, testing slash commands (/about, /context, /auth, /export), generating visual documentation, or when 'terminal screenshot', 'CLI test', 'visual test', or 'terminal-capture' is mentioned.

QwenLM/qwen-code · 66 tokens

agent-reproduce-align

Use after a Codex or Claude Code feature has been implemented in Qwen Code to run the selected reference agent and Qwen Code under the same scenario, capture HTTP and terminal traces, compare request bodies, tool/function schemas, outputs, and iterate until the reproduced behavior is close enough.

QwenLM/qwen-code · 62 tokens

webapp-testing

Start/reuse a local app, wait for readiness, inspect rendered state/console/network, act from observed selectors, and verify with evidence.

Hmbown/CodeWhale · 32 tokens