smoke-monkey-tester

smoke-monkey-tester is a skill for Claude Code, Codex from GktuOktay/ai-skills. It costs 62 tokens per session (940 once invoked), scanned A, original, MIT.

A testing guide that checks whether the most important parts of a system work and then tries to break them with random or unexpected inputs.

In plain words
What is it for?
Use it to check key paths such as a homepage, login, or health endpoint, and to run randomized chaos tests.
Why use it?
It can reveal basic failures and fragile behavior early, before they reach users or block a release.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to check key paths such as a homepage, login, or health endpoint, and to run randomized chaos tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gktuoktay/ai-skills/smoke-monkey-tester
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 GktuOktay/ai-skills --skill smoke-monkey-tester
Clone the repo
git clone --depth 1 https://github.com/GktuOktay/ai-skills

Made for: Claude Code, Codex.

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-monkey-tester

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/gktuoktay/ai-skills/smoke-monkey-tester"><img src="https://agentmods.dev/badge/skills/gktuoktay/ai-skills/smoke-monkey-tester.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 940 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00062 $0.00940
Opus 5 $0.00031 $0.00470
Sonnet 5 $0.00012 $0.00188
Haiku 4.5 $0.00006 $0.00094

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

Security

Grade A, and why

smoke-monkey-tester scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

# A simple curl-based smoke test script
.agents/skills/smoke-monkey-tester/SKILL.md · 103 lines

How it starts

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

Smoke & Monkey Tester Guidelines

As a Smoke and Monkey Tester, you operate at the extremes of testing. You perform shallow, high-level verification to ensure the system is fundamentally alive (Smoke Testing), and you inject chaos through random, unexpected inputs to expose hidden vulnerabilities and brittleness (Monkey Testing/Chaos Engineering).

Smoke Testing: The First Line of Defense

Smoke tests verify that the most crucial features work. If smoke tests fail, the build is rejected immediately.

Characteristics of a Smoke Test

  1. Speed: Must run in minutes or less.
  2. Breadth over Depth: Hits main endpoints, not edge cases.
  3. Critical Paths: Login, homepage rendering, database connectivity.

Code Example: Post-Deployment Verification (Smoke Test)

#!/bin/bash
# A simple curl-based smoke test script

TARGET_URL="https://production.example.com"

# Check Home Page HTTP Status
status_code=$(curl -s -o /dev/null -w "%{http_code}" "$TARGET_URL")
if [ "$status_code" -ne 200 ]; then
  echo "Smoke Test Failed! Homepage returned HTTP $status_code"
  exit 1
fi

# Check Health Endpoint
health_status=$(curl -s "$TARGET_URL/api/health" | jq -r '.status')
if [ "$health_status" != "healthy" ]; then
  echo "Smoke Test Failed! API Health is $health_status"
  exit 1
fi

echo "Smoke tests passed. System is breathing."
exit 0

Monkey Testing: Embracing Chaos

Monkey testing involves feeding random, unexpected, and invalid data to the application to see if it crashes. It is a subset of Fuzzing.

Techniques

Technique Description Tooling
Smart Monkey Understands the application structure and generates inputs that are likely to cause issues (e.g., massive strings in text fields). Playwright, Selenium, Gremlins.js
Dumb Monkey Purely random clicks, keystrokes, and swipes without any knowledge of the UI. Android UI/Application Exerciser Monkey
Fuzz Testing Feeding automated random data into an API or function. AFL, libFuzzer

Read the full file on GitHub · 103 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. 12d ago First seen · 103 lines · 62 tokens per session scan A 04bf29a32ec4

Subscribe to this mod's changes

smoke-monkey-tester is a skill published in the GitHub repository GktuOktay/ai-skills (2 stars, last pushed 9d ago), licensed MIT. It adds 62 tokens to every session and 940 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.