get_playbook
Return one `UPGPlaybook` by id (e.g. "playbook:strategy-outcomes", "playbook:business-model-bmc"). Includes the ordered `creation_sequence` with step kinds and prompts. IDs are namespace-prefixed `playbook:*`. For approaches, use `get_approach`.
Spec Introspectionatomic (read-only)
Arguments
idstringrequiredPlaybook id (namespace-prefixed: playbook:*).
Returns
JSON: the full UPGPlaybook record.
Examples
Live call against the Notion example graph.
Input
{
"id": "playbook:strategy-outcomes"
}Output
{
"id": "playbook:strategy-outcomes",
"name": "Strategy & Outcomes",
"version": "0.2.0",
"description": "Cascade vision through themes, outcomes, objectives, key results, and the bets you are making to get there.",
"region": "strategy_outcomes",
"is_canonical": true,
"target_anchor_entity": "objective",
"creation_sequence": [
{
"kind": "entity_sequence",
"order": 1,
"phase": "Vision & Mission",
"name": "Vision & Mission",
"prompt_hint": "Name what you are building toward and how you will get there. Vision is the destination; mission is the orientation. One of each, no more.",
"entity_types": [
"vision",
"mission"
]
},
{
"kind": "entity_sequence",
"order": 2,
"phase": "Themes",
"name": "Themes",
"prompt_hint": "Choose 2–4 strategic themes that focus the work. Past four, you have lost focus, not gained coverage.",
"entity_types": [
"strategic_theme",
"strategic_pillar"
]
},
{
"kind": "entity_sequence",
"order": 3,
"phase": "Outcomes",
"name": "Outcomes",
"prompt_hint": "Frame the changes in the world the product is trying to cause: shifts in behavior, perception, or position. Not features shipped.",
"entity_types": [
"outcome"
]
},
{
"kind": "entity_sequence",
… (truncated)