Some checks failed
Deploy Development / deploy (push) Successful in 46s
Test Suite / pytest-backend (push) Failing after 2m2s
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 3s
Test Suite / compose-smoke (push) Has been skipped
PO-Dokumente (ADP v0.2, MVP v0.3) und Minimal Complete Slice: Registry-Methoden, Initiative/Project-Spiegel, Default-Methode bei Anlage, Lagebild mit Archetyp und Guidance. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
439 B
Python
15 lines
439 B
Python
"""Built-in method: program_delivery — AP2.0a."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.methods.registrations._helpers import 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",
|
|
)
|