smoke-test-auth

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

A skill for smoke-testing authentication and authorization flows, which are quick checks that core access features still work. It covers login, tokens, sessions, permissions, password operations, and multi-factor authentication.

In plain words
What is it for?
It is for checking authentication flows, JWT tokens, protected resources, role-based access, password changes, and 2FA or MFA.
Why use it?
It helps detect broken sign-in, session, or access-control behavior during releases before users encounter it.

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 authentication flows, JWT tokens, protected resources, role-based access, password changes, and 2FA or MFA.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fortiumpartners/ensemble/smoke-test-auth
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-auth
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-auth

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/smoke-test-auth"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/smoke-test-auth.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 488 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.00488
Opus 5 $0.00000 $0.00244
Sonnet 5 $0.00000 $0.00098
Haiku 4.5 $0.00000 $0.00049

Measured 5d ago against content hash 43b6e7d9235b, 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-auth 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/test-auth-flows.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-auth/SKILL.md · 72 lines

How it starts

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

Smoke Test Auth Skill

Quick Reference - Load this first for fast context (~2KB)

Mission

Execute comprehensive authentication and authorization smoke tests to validate login flows, token validation, session management, and access control during release workflows.

Core Capabilities

  • Login Flow Testing: Validate email/password, OAuth, SSO authentication
  • Token Validation: Test JWT generation, validation, and refresh
  • Session Management: Verify session creation, persistence, expiration
  • Access Control: Test role-based and permission-based authorization
  • Password Operations: Validate password reset and change flows
  • Multi-Factor Authentication: Test 2FA/MFA flows

Quick Start

const { SmokeTestAuth } = require('./scripts/test-auth-flows.js');

const tester = new SmokeTestAuth({
  baseUrl: 'https://staging.example.com',
  testCredentials: {
    email: '[email protected]',
    password: process.env.TEST_USER_PASSWORD
  }
});

const result = await tester.executeTests({
  environment: 'staging',
  tests: ['login', 'token-validation', 'protected-resource']
});

if (result.passed) {
  console.log('✅ Auth smoke tests passed');
}

Performance SLAs

const SLA_TARGETS = {
  login: 2000,              // Login: ≤2s
  tokenValidation: 100,     // Token validation: ≤100ms
  sessionCheck: 50,         // Session check: ≤50ms
  protectedResource: 500,   // Protected resource: ≤500ms
  logout: 1000              // Logout: ≤1s
};

Pass/Fail Criteria

Pass: All auth tests must pass

  • ✅ Login successful with valid credentials
  • ✅ Login fails with invalid credentials
  • ✅ Tokens generated and validated correctly
  • ✅ Protected resources accessible with valid auth
  • ✅ Protected resources blocked without auth

Fail: Any auth test failure blocks deployment

  • ❌ Login fails with valid credentials
  • ❌ Login succeeds with invalid credentials
  • ❌ Token validation failures
  • ❌ Unauthorized access to protected resources
  • ❌ Authorized access blocked

Read the full file on GitHub · 72 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 · 72 lines · 0 tokens per session scan A 43b6e7d9235b

Subscribe to this mod's changes

smoke-test-auth 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 488 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