"""Debug prompts for actor context kind.""" from __future__ import annotations from prompt_registry import PromptRegistration, PromptVersionRegistration, register_prompt register_prompt( PromptRegistration( prompt_key="kairo.actor.debug_summary", name="Actor Context Debug", purpose="Minimaler Prompt für kairo.actor_context", context_kind="kairo.actor_context", execution_mode="single", active_version="1.0.0", versions=( PromptVersionRegistration( version="1.0.0", body="Actor {{actor_id}} ({{actor_type}}) in tenant {{tenant_id}}.", changelog="Actor context smoke", ), ), ) )