get_wiki_page
Fetch a pre-compiled wiki page from a channel's fixed-page set (overview, faq, decisions, people, glossary, activity, topics) for a quick structured summary.
Instructions
Fetch one pre-compiled wiki page from the LEGACY fixed-page set (overview, faq, decisions, people, glossary, activity, topics). Call it for a fast, whole-channel summary keyed by a fixed page_type.
Disambiguation: this is the legacy fixed-page surface. For the redesigned slug-keyed wiki — arbitrary topic/entity pages, structured kind payloads, and the cross-link graph — use list_wiki_pages to discover pages then read_wiki_page(slug=...). Prefer those for anything beyond the seven fixed pages above.
When to use: you want a quick structured summary of a known aspect of a channel without running the QA pipeline. When NOT to use: you need a specific answer (use ask_channel) or a non-fixed wiki topic (use read_wiki_page).
Prerequisites: a channel_id from list_channels.
Returns (instant, read-only): the page dict
{page_type, channel_id, content, summary, text}. content is null
when that page has not been generated yet (run a sync / refresh_wiki
first). No side effects.
Error modes (returned as dicts): 'authentication_missing' (no principal);
'channel_access_denied' (token lacks access to channel_id). Other internal
failures return the page dict with content: null.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | Channel id. Get it from list_channels (e.g. 'ch-eng'). Required. | |
| page_type | No | Which fixed page to fetch. One of exactly: 'overview', 'faq', 'decisions', 'people', 'glossary', 'activity', 'topics'. Default 'overview'. | overview |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||