SKILL.md
Docs Quickstart Skill
The quickstart is the most important page in any developer docs — it decides whether someone gets a win in five minutes or bounces. This skill writes a tight, copy-paste-able quickstart that takes a dev from install → first working result with the absolute minimum of steps, then points them to what's next.
Required Inputs
Ask for these only if they aren't already provided:
- What it is — the tool/library/API and what a developer uses it for.
- Install & setup — how to install; any key/auth/config needed to start.
- The "hello world" — the smallest meaningful thing it can do (the first win).
- Environment — language(s)/runtime, prerequisites.
- Next steps — where to go deeper (key guides, API reference, examples).
Output Format
Quickstart: [Product]
Get from zero to [first result] in ~5 minutes.
Prerequisites — the short list (versions, account/key) — only what's truly required.
1. Install
# the actual install command(s)
2. Configure / authenticate (only if needed) — the minimal setup, with where to get a key.
3. Your first [result] — the smallest complete, runnable example:
# copy-paste-able code that actually works end to end
4. What you should see — the expected output, so they know it worked.
Next steps — 3–4 links/pointers: the core concept to learn next, the API reference, more examples, how to get help.
Troubleshooting (optional) — the 1–2 most common first-run errors and the fix.
Quality Checks
- A developer can copy-paste their way to a working result — no missing steps
- The first example is the one (one clear win), not a feature tour
