4 min read
rtfm
Generated source view for the actual executable
engineering/rtfmskill. The durable routing article is Agent Engineering Skills. Source: skills/engineering/rtfm/SKILL.md
Runtime Source
| Field | Value |
|---|---|
| Category | engineering |
| Origin | personal |
| Slug | rtfm |
| Source slug | rtfm |
| Family | Agent Engineering Skills |
| Source | skills/engineering/rtfm/SKILL.md |
Bundled Resources
These files are part of the executable skill folder and must be preserved with the skill source.
| File | Role |
|---|---|
references/skills/dedalus-rtfm/SKILL.md |
Progressive reference |
Description
Verify claims against primary sources before writing code or docs. Read the actual API, run the actual command, check the actual docs. Do not guess. Do not assume. Do not ship until verified.
Skill Source
---
name: rtfm
description: >-
Verify claims against primary sources before writing code or docs.
Read the actual API, run the actual command, check the actual docs.
Do not guess. Do not assume. Do not ship until verified.
origin: personal
source_slug: rtfm
---
# RTFM
When you think you know how an API, tool, or system works, you are
wrong until you have verified it against the source. This skill exists
because workarounds for nonexistent limitations are worse than the
problems they claim to solve.
## When to use
Every time you:
- claim a library, API, or tool lacks a feature
- claim something "can't be done" or "isn't supported"
- write a workaround, shim, or fallback
- choose one approach over another based on a tool's capabilities
- dismiss an option without trying it
## Procedure
### 1. Read the primary source
The actual code, API docs, or type signature. Not a summary. Not a
blog post. Not your memory.
| Claim type | Where to look |
|---|---|
| "crate X doesn't support Y" | `docs.rs/X`, GitHub source, `Cargo.toml` features |
| "API doesn't accept parameter Z" | OpenAPI spec, SDK type definition, `--help` |
| "kernel doesn't support mode M" | `kernel.org/doc/html/`, `Documentation/` tree |
| "service doesn't offer feature F" | official product docs, changelog, pricing page |
| "protocol doesn't allow operation O" | RFC, spec PDF, reference implementation |
### 2. Read the secondary source
Official examples, changelogs, migration guides.
- README examples in the upstream repo
- CHANGELOG entries for the version you are using
- Official SDK example repos
- Release notes and migration guides
### 3. Read the tertiary source
Community evidence that people are doing the thing you think is
impossible.
- GitHub issues and PRs mentioning the feature
- Stack Overflow answers with working code
- Reddit or HN threads with first-hand experience
- Conference talks or blog posts from maintainers
### 4. Run it
If the claim is about runtime behavior, write a minimal test. Five
lines. Compile it. Run it. See what happens. Do not theorize about
what the compiler, runtime, or service will do. Ask it.
### 5. Only then decide
After steps 1-4, you may say "X doesn't support Y." Not before.
If you skipped any step, go back. The five minutes you spend reading
docs saves the five hours you spend building and debugging a
workaround for a limitation that does not exist.
## The rule
If you have not read the docs, you have not earned the right to say
it cannot be done. Read first. Decide second. Code third.
<!-- auto-promoted from skills/engineering/dedalus-rtfm by sync-dedalus on 2026-06-13; review & generalize any Dedalus-specific references. -->
<!-- folded-skills:auto:start -->
## Folded Skill References
These former standalone skills are bundled here as references to keep the runtime list compact. Load only the reference that matches the user's exact product, framework, or failure mode.
| Former skill | Reference | Description |
| --- | --- | --- |
| `dedalus-rtfm` | [`references/skills/dedalus-rtfm/SKILL.md`](references/skills/dedalus-rtfm/SKILL.md) | Verify claims against primary sources before writing code or docs. Read the actual API, run the actual command, check the actual docs. Do not guess. Do not assume. Do not ship until verified. |
<!-- folded-skills:auto:end -->
Timeline
- 2026-07-15 | Generated a browseable source page from the actual executable skill file. Source: skills/engineering/rtfm/SKILL.md