get_decision
Fetch full decision content by id, including metadata. Use after index_only queries for on-demand detail retrieval.
Instructions
Fetch a single decision by id, including its full content. Companion to query_decisions index_only: true (progressive disclosure): list cheaply with index_only, then pull full content on demand for the ids you care about. Read-only. Returns JSON: { decision: { id, title, content, type, tags, ... } } or { error } when not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Decision id to fetch (from an index_only query). | |
| verify | No | Staleness verification (default: true). When true, the returned decision carries `verification` + `stale` when its linked symbol was deleted/renamed or its source changed since `created_at`. |