| name | documentation |
| description | Build, serve, and write Wassette's mdBook documentation under docs/ — concise, code-first prose, the multi-version URL layout, and navigation in SUMMARY.md. Use when editing docs/ pages or previewing the documentation site. |
| allowed-tools | Bash, Read, Write, Edit, Glob, Grep |
documentation skill
Wassette documentation lives under docs/ and is built with
mdBook.
Build and serve
just docs-build
just docs-watch
just docs-serve
Or directly: cd docs && mdbook serve / mdbook build.
URL structure
Production uses a multi-version layout that mdbook serve does not reproduce
locally:
- Local: open
http://localhost:3000/overview.html (or a specific page).
The version picker and the root redirect only work in production.
- Production:
https://microsoft.github.io/wassette/latest/ (and
/v0.3.0/ for releases).
Writing style
- Prefer working code examples over long prose; explain details second.
- Keep pages focused and concise; every sentence should add value.
- Use active voice and present tense; define acronyms on first use.
- Always set the language on code blocks; use descriptive link text.
Visual changes
Preview layout or presentation changes locally. Include screenshots when they
help reviewers understand a meaningful visual difference.
Adding a page
- Create the markdown file in the right
docs/ subdirectory.
- Register it in
docs/SUMMARY.md so it appears in navigation.
- Match existing structure and formatting; test all links.
- Preview locally with
just docs-serve.