Some checks failed
Deploy Development / deploy (push) Successful in 48s
Test Suite / pytest-backend (push) Failing after 3m23s
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
Decision-Lock, Spec-D-Methoden und C1-Massstab-Vollspecs als Zielbild; Steering-Registry/Compat und Horizon-Tests an die Normierung anbinden. Implementierungsausreichendheit bleibt bewusst offen. Co-authored-by: Cursor <cursoragent@cursor.com>
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""Built-in method: product_milestone_driven — AP1.1 / AP2.4."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.graph.profiles import STRICT
|
|
from steering.methods.registrations._helpers import ELEM_NEXT, SLICES_OM_STANDARD
|
|
from steering.methods.registry import MethodDefinition, get_method, register_method
|
|
|
|
_PRODUCT_STEPS = (
|
|
"intake",
|
|
"method_selection",
|
|
"structure_setup",
|
|
"planning",
|
|
"action_selection",
|
|
"assignment",
|
|
"waiting",
|
|
"result_intake",
|
|
"validation",
|
|
"review",
|
|
"adaptation",
|
|
"closure",
|
|
)
|
|
|
|
|
|
def register() -> None:
|
|
if get_method("product_milestone_driven"):
|
|
return
|
|
register_method(
|
|
MethodDefinition(
|
|
key="product_milestone_driven",
|
|
version="0.1.0",
|
|
label="Produkt / Meilenstein",
|
|
description="Meilenstein-orientierte Steuerung für Produkt- und Projektentwicklung",
|
|
default_lifecycle_steps=_PRODUCT_STEPS,
|
|
next_action_strategy_key="product_milestone_driven",
|
|
data_slices=SLICES_OM_STANDARD,
|
|
compatible_archetype_keys=frozenset(
|
|
{
|
|
"initiative.product",
|
|
"initiative.generic",
|
|
}
|
|
),
|
|
steering_elements=ELEM_NEXT | frozenset({"gate_fulfillment"}),
|
|
graph_profile=STRICT,
|
|
)
|
|
)
|