get_document
Retrieve specific internal documents by ID to access detailed content or summaries for engineering standards, runbooks, and architecture decisions.
Instructions
Retrieve an internal document by its ID.
Use this after search_internal_docs to get details of a specific document. Document IDs follow the format: STD-001, RUN-002, ADR-003, etc.
Args: document_id: The document identifier (e.g., "STD-001", "RUN-002"). summary: When True, return only a summary (first 500 chars) instead of the full content. Useful for long documents to save context.
Returns: JSON string with the document content (or summary), or an error if not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| document_id | Yes | ||
| summary | No |