Fetch Manual Chunk
get_manual_chunkRead one manual chunk by id to ground your answer in the manufacturer's documentation — the drill-in partner to get_module's manual_outline. Use it when a claim (voltage range, behavior, calibration step) benefits from the source's own account.
Read the chunk, then answer in your own words and point the user to the source (audit_url) to verify. Paraphrase the substance; do not paste the chunk back as your reply. Quote verbatim only when the exact wording is load-bearing for a specific contested detail, and then only a short phrase. Citation style is SKILL.md §8 (cite-and-point, don't reproduce).
text is capped (~800 chars): enough to ground an answer, not to reproduce the manual. If truncated:true, a " […]" marks the cut and the full passage is at audit_url — send the user there for the rest rather than stitching chunks together to rebuild it.
When to call:
You have a chunk_id from get_module's manual_outline that looks relevant to the question.
You're writing an answer with specific technical claims and want the source's account to ground (and, if needed, briefly cite) it.
The user asked a prose-shaped question ("what does the manual say about X?") — read the chunk, then explain it in your own words with a link to verify.
Prefer get_manual_chunk over search_manual when:
You already have the chunk_id from get_module's manual_outline.
You want exactly one chunk, not a ranked list.
Returns: { "chunk_id": number, "source_id": number, "source_type": string, // "manual" | "product_page" | "firmware_notes" "source_title": string | null, "heading_path": string | null, // e.g. "Calibration > Tuning Procedure" "text": string, // chunk text, capped ~800 chars; paraphrase, don't paste "truncated": boolean, // true if text was trimmed; full passage at audit_url "audit_url": string // human-readable audit page for the source }
Errors:
"Manual chunk not found: " if the chunk_id doesn't exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chunk_id | Yes | Chunk id from manual_outline[].chunk_id or a search_manual result. |