From example-skills
Validate that documentation, READMEs, and onboarding guides are comprehensible to someone with zero prior context. Systematic approach to testing docs from a stranger's perspective with actionable feedback. Triggers on documentation review, onboarding validation, or README quality assessment requests.
npx claudepluginhub organvm-iv-taxis/a-i--skills --plugin document-skillsThis skill uses the workspace's default tool permissions.
Evaluate documentation from the perspective of someone encountering the project for the first time.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Evaluate documentation from the perspective of someone encountering the project for the first time.
The Stranger Test asks: "Could a competent developer with zero context about this project understand what it does, why it exists, and how to get started — in under 5 minutes?"
Evaluate the README's first screen:
| Criterion | Pass | Fail |
|---|---|---|
| What is it? | Clear one-sentence description | Jargon, acronyms, or missing |
| Who is it for? | Target audience stated or obvious | Unclear audience |
| Why does it exist? | Problem/value stated | No motivation |
| Is it alive? | Recent activity, badges, dates | No signals of maintenance |
Evaluate understanding after reading the full README:
| Criterion | Pass | Fail |
|---|---|---|
| Architecture | Can sketch the system on a napkin | Opaque internal terminology |
| Key concepts | Core abstractions defined | Assumes prior knowledge |
| Scope boundaries | Clear what it does and doesn't do | Ambiguous scope |
| Relationship to ecosystem | How it fits with other tools | Exists in a vacuum |
Evaluate the getting-started experience:
| Criterion | Pass | Fail |
|---|---|---|
| Prerequisites | Listed explicitly | Discovered through errors |
| Install steps | Copy-pasteable commands | Incomplete or stale |
| First success | Can run hello-world | Errors before first output |
| Next steps | Clear path forward | Dead end after install |
Temporarily forget all context about the project. Read as if encountering it on GitHub for the first time. Note every moment of confusion, even if you "know the answer."
Read the documentation in this order, timing each section:
For each confusion point, record:
- **Location:** README.md, line 23
- **Confusion:** "What is an 'organ' in this context? The term is used 5 times before being defined."
- **Severity:** High (blocks understanding of everything that follows)
- **Fix:** Add a one-sentence definition before first use, or link to glossary.
Score each criterion as PASS, PARTIAL, or FAIL. Provide evidence.
## Stranger Test Report: {project-name}
**Tester:** {name/role}
**Date:** {date}
**Time to first understanding:** {seconds}
**Time to first success:** {minutes, or "did not achieve"}
### Level 1: First Contact — {PASS/PARTIAL/FAIL}
{findings}
### Level 2: Comprehension — {PASS/PARTIAL/FAIL}
{findings}
### Level 3: Activation — {PASS/PARTIAL/FAIL}
{findings}
### Confusion Points (ordered by severity)
1. {point}
2. {point}
### Recommendations (ordered by impact)
1. {recommendation}
2. {recommendation}
Bad: "This repo manages the Taxis orchestration layer for the ORGANVM eight-organ model."
Good: "This repo orchestrates automated workflows across ORGANVM — a system that organizes ~100 repositories into 8 functional groups ('organs') covering theory, art, commerce, and governance."
Bad:
npm install
npm start
Good:
# Prerequisites: Node.js 20+, npm 10+
# Verify: node --version && npm --version
npm install
npm start
# Open http://localhost:3000 — you should see the dashboard
Bad: "See the governance rules for promotion constraints."
Good: "See governance-rules.json for promotion constraints — these define the state machine (LOCAL → CANDIDATE → GRADUATED) that every repository moves through."
Bad: README ends after install instructions.
Good: README includes "What's Next" section with 3-4 concrete next steps.
Focus on Level 1 and Level 3. The README is the front door — it must answer "what" and "how to start" immediately.
Focus on Level 2 and Level 3. Developers need to understand concepts and make their first API call quickly.
Focus on Level 3 heavily. The reader is motivated but needs a clear path from "I want to help" to "I submitted a PR."
Focus on Level 2. Can a new team member understand the system well enough to know where to make changes?
# Reminder in PR template
- [ ] Stranger test: Could a new contributor understand this PR's context from the linked docs?
- [ ] New concepts introduced in this PR are defined before first use
- [ ] Commands in documentation are copy-pasteable and tested