Handbook
Docs Health 101 — First scan
A read-only check of the Docs Health JSON feeds (or the Studio panel that consumes them) so you can see documentation hygiene signals without changing repos.
Updated
What it is
A read-only check of the Docs Health JSON feeds (or the Studio panel that consumes them) so you can see documentation hygiene signals without changing repos.
When to use it
When branching or handbook policy changed, or right after your first Classic review, before asking agents to fix docs drift.
Outcome
You have looked at summary and work-items (or their Studio equivalent) once and understand what “clean vs in trouble” means for your workspace.
Prerequisites
- Server from Install and run.
- GET-only access on loopback — follow Schemas and API for builders if you script calls; no mutating verbs in this tutorial.
Scenario
You want a 2–5 minute sanity check: counts on /api/docs-health/summary line up with /api/docs-health/work-items totals you see in Forge Studio.
Steps
- Read the reference table in Docs Health in Studio so you know the three paths (
summary,work-items,live-sessions). - From the same host the server binds to, request
GET /api/docs-health/summaryandGET /api/docs-health/work-items(browser,curl, or Studio cards — GET only). - Compare roll-up counts in
summarywithtotalor list length inwork-itemsas described on the product-area page. - Optionally skim
live-sessionsif you run verification jobs — correlaterepofields with your checkout paths. - If Studio exposes a Docs Health panel, open it and confirm it shows the same signals you saw in JSON.
How to verify success
- Both summary and work-items return 200 JSON (not HTML error pages).
- Totals reconcile the way Docs Health in Studio describes; you can explain one work-item type in plain language.
Recover
- 401/403 — your deployment may require auth; see Security and local-first operations and server operator docs — do not paste tokens into tickets.
- Connection refused — wrong host/port or server down; fix Install and run first.
- Empty queues but you expect issues — scan paths or branch policy may exclude repos; see maintainer
docs-health-git-branch-policyreferences from Docs Health in Studio.
What to do next
- Studio 201 for operational habits.
- Schemas and API for builders for safe automation patterns.