Rtfm Testing
Description
RTFM Testing: Documentation quality methodology using fresh agent spawns
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
RTFM Testing
A documentation quality methodology that spawns fresh agents to validate whether docs are actually usable.
"If an amnesiac can't follow your docs, your docs suck."
The Problem
Documentation written by the person who built the thing is almost always incomplete. They fill in gaps unconsciously. They assume context. They skip "obvious" steps.
RTFM Testing fixes this by spawning a fresh agent with zero context and asking: can you complete this task using only the docs?
How It Works
- Identify the task — What should someone be able to do after reading the docs?
- Bundle the docs — Collect all relevant documentation (and nothing else)
- Spawn a fresh tester — Use the TESTER.md prompt with
sessions_spawn - Analyze failures — Every confusion point is a doc bug
- Fix and repeat — Update docs, respawn, retest until clean
Quick Start
sessions_spawn(
task: "Complete the following task using ONLY the provided documentation.\n\nTASK: [describe what user should accomplish]\n\n---\n\nDOCUMENTATION:\n\n[paste your docs here]"
)
The tester will:
- Attempt the task literally, using only provided docs
- Report every gap with type, location, impact, and suggested fix
- Return SUCCESS, PARTIAL, or FAILURE
Gap Types
| Type | Description |
|---|---|
MISSING_STEP |
A required action is not documented |
MISSING_PREREQ |
A prerequisite is not listed |
UNCLEAR |
Instructions are ambiguous |
INCORRECT |
Documentation is wrong or outdated |
MISSING_CONTEXT |
Assumes undocumented knowledge |
ORDERING |
Steps are in wrong sequence |
Metrics
- Cold Start Score — Number of spawn cycles until SUCCESS (lower = better)
- Gap Count — Total gaps per run
- RTFM Certified — Docs pass when fresh tester succeeds with zero blocking gaps
Files
SKILL.md— Detailed methodology guideTESTER.md— System prompt for fresh agent spawnGAPS.md— Gap report format specific
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing