Kairo-Jinkendo/backend/prompt_registrations/debug.py
Lars 53047b6c16
All checks were successful
Deploy Development / deploy (push) Successful in 38s
Test Suite / pytest-backend (push) Successful in 18s
Test Suite / lint-backend (push) Successful in 1s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 18s
Test Suite / playwright-smoke (push) Successful in 24s
AP0.4: Feature-, Prompt- und Config-Registry mit Single-Render und Entitlements-Features.
Migration 005, Registry-Sync, Placeholder-Validation, capability-geschuetzte API, Tests und Abschlussbericht v0.1.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-04 23:29:02 +02:00

24 lines
727 B
Python

"""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",
),
),
)
)