Documentation¶
Skill version 2026.08.28
This skill covers documentation expectations when contributing to HoloViz repositories.
Most HoloViz projects follow the Diátaxis documentation framework (tutorials, how-to guides, explanation, reference). Place new docs in the appropriate category. If the project doesn't follow Diátaxis yet, match the existing structure.
Contents¶
Docs Coverage¶
- New features and enhancements must be documented. A PR that adds a parameter, method, or behavior change without updating docs is incomplete.
- Build docs via pixi. Check
pixi.tomlfor the task (e.g.pixi run docs-build).
Prose Quality¶
When writing narrative prose (tutorials, how-to guides, explanations), run the deslop skill scanner on the result. LLM-drafted docs pick up AI vocabulary, negative parallelism, and filler that erodes trust with readers who recognize it. Fix every hit that isn't a false positive.
Example and Reference Notebooks¶
- Run notebooks and review the rendered output, not just the code: watch for clipping/overlap (e.g. legend over plot), adequate size, and legible labels.
- Demonstrate options representatively, not exhaustively — values distinct enough to show the effect, with
hv.help(...)for the full list. - Cover each supported backend; add a per-backend gallery thumbnail if the docs gallery uses them.