Kairo-Jinkendo/backend/steering/methods/registrations/program_delivery.py
Lars 38fed379ae
Some checks failed
Deploy Development / deploy (push) Successful in 49s
Test Suite / pytest-backend (push) Failing after 3m12s
Test Suite / k6 /api/health Baseline (push) Has been skipped
Test Suite / playwright-smoke (push) Has been skipped
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped
AP2.3e: Method Plugin Contract mit data_slices und Archetyp-Kompatibilitaetspruefung.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-25 10:27:40 +02:00

20 lines
573 B
Python

"""Built-in method: program_delivery — AP2.0a."""
from __future__ import annotations
from steering.methods.registrations._helpers import (
SLICES_PROGRAM,
register_product_like_method,
)
def register() -> None:
register_product_like_method(
key="program_delivery",
label="Programm (begrenzt)",
description="Meilenstein- und gate-orientierte Steuerung mit Abschluss",
next_action_strategy_key="program_delivery",
data_slices=SLICES_PROGRAM,
compatible_archetype_keys=frozenset({"initiative.program"}),
)