create-manual-test-guide

create-manual-test-guide is a skill for Claude Code from atman-33/workhub. It costs 82 tokens per session (1,092 once invoked), scanned A, original, MIT.

A self-contained HTML guide for testing an implemented change by hand in a web browser.

In plain words
What is it for?
It is for preparing manual verification of a feature, branch, pull request, or commit range.
Why use it?
It turns the code change into setup instructions, test scenarios, expected results, and a pass/fail checklist that can export results as Markdown.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the engineering plugin — 18 skills, 4 agents, 2 MCP servers shipped together

Good fit It is for preparing manual verification of a feature, branch, pull request, or commit range.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add atman-33/workhub
Claude Code
/plugin install engineering

Made for: Claude Code.

Or install engineering, the plugin that ships this one along with the rest of its 18 skills, 4 agents, 2 MCP servers.

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 create-manual-test-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/atman-33/workhub/create-manual-test-guide.svg)](https://agentmods.dev/skills/atman-33/workhub/create-manual-test-guide)
Your own site
<a href="https://agentmods.dev/skills/atman-33/workhub/create-manual-test-guide"><img src="https://agentmods.dev/badge/skills/atman-33/workhub/create-manual-test-guide.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,092 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.00082 $0.01092
Opus 5 $0.00041 $0.00546
Sonnet 5 $0.00016 $0.00218
Haiku 4.5 $0.00008 $0.00109

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

Security

Grade A, and why

create-manual-test-guide 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.

plugins/engineering/skills/create-manual-test-guide/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.

Create Manual Test Guide

Produce one self-contained HTML file that walks a human tester through verifying an implementation: how to set up, what to do, what to expect, and a checklist that exports its results back as Markdown.

1. Resolve the output directory

The output directory is per-installer configuration, resolved in this order:

  1. ${CLAUDE_PLUGIN_ROOT}/config.jsonoutputDir (shared across this plugin's skills)
  2. config.json next to this SKILL.md → outputDir (skill-level override)
  3. Neither exists → read config.example.json for the expected shape, ask the user for a real absolute path, then write it to the skill-level config.json (git-ignored) so the question is never asked again.

Honor openAfterGenerate (default true) from the same file.

2. Determine what to test

  • The user named a feature, branch, PR, or commit range → use exactly that.
  • Otherwise default to the current implementation: git diff $(git merge-base main HEAD)...HEAD on a feature branch, or git diff HEAD for uncommitted work. Confirm with the user if ambiguous.

3. Understand the behavior — derive scenarios from real code

  • Read the changed files and trace user-facing entry points (UI routes, API endpoints, CLI commands, config flags) with Grep/Glob.
  • Find out how the app is actually launched and configured (README, package scripts, docker-compose, .env examples) — setup instructions must be real commands, not guesses.
  • Derive scenarios covering: the happy path per user-visible behavior, edge cases visible in the code (validation limits, empty states, permissions), error handling (invalid input, failures the code explicitly handles), and regression checks for adjacent behavior the change could have broken.
  • If prerequisites exist you cannot verify (accounts, external services, seed data), list them explicitly as assumptions rather than inventing steps.

4. Generate the HTML guide

One self-contained .html file: inline <style>, <script>, and SVG — no CDN, no external assets. Write prose in the language the user is conversing in; keep commands, identifiers, and code as-is. Required sections, in order:

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

Subscribe to this mod's changes

create-manual-test-guide is a skill published in the GitHub repository atman-33/workhub (2 stars, last pushed 2d ago), licensed MIT. It adds 82 tokens to every session and 1,092 once invoked, about $0.0004 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

browser-check

Drive a real browser and come back with a MEASUREMENT rather than an impression - console errors and >=400 responses as counts, computed styles as JSON when appearance is disputed. Use when work touches UI, when a review must verify one, or when fidelity-gate asks for its measurement.

jjanczur/tyran · 58 tokens

qa

QA testing skill with real browser automation. Use when asked to "test this site", "QA this page", "check for visual bugs", "verify the deploy", or when Hydra needs browser validation for UI changes. Requires the browse binary.

blueberrycongee/termcanvas · 50 tokens

acceptance

A skill for writing, running, and repairing human-written acceptance checks stored in an `acceptance/ACCEPTANCE.md` file. Acceptance checks are executable tests of whether the finished result matches the requested outcome.

cryndoc/polisade-orchestrator · 129 tokens

testing-strategy

Test pyramid, coverage targets, and test patterns (unit/integration/E2E). TRIGGER when: planning tests, writing test code, or reviewing coverage. SKIP: quality-gate scoring of plans (use quality-validation); security testing (use security-review-checklists). (Examples use common runners such as pytest and vitest.).

komluk/scaffolding · 71 tokens

journey-simulation

Use when caller wants to observe how a stranger encounters a flow, artifact, or sandbox — triggers like "simulate a user journey", "test our onboarding / checkout / signup", "will my ICP convert", "how does a cold reader experience this README", "first-time user test", "cognitive walkthrough", or any request to…

RockyHong/super-bootstrap · 79 tokens

playwright-setup

Scan project docs/source, interview user, create Playwright E2E test specs + config from scratch for any app.

FaisalNoman/playwright-skills · 29 tokens