"""Implementation Playbook — the Berater renderer ("wie komme ich dort hin?"). For one capability it assembles the full implementation journey (why / closes which regulations / tools / process / evidence / controls) from curated playbook knowledge + regulatory leverage + injected Execution links. `playbooks_for_plan` chains the Optimization Roadmap into per-measure playbooks. Pure, deterministic, computed-not-stored. No new corpus, no new meta-model class (freeze v1.0). Curated content = expert draft, never normative. """ from __future__ import annotations from .engine import build_playbook, playbooks_for_plan from .schemas import Playbook, PlaybookStep __all__ = [ "build_playbook", "playbooks_for_plan", "Playbook", "PlaybookStep", ]