Some checks failed
Deploy Development / deploy (push) Successful in 46s
Test Suite / pytest-backend (push) Failing after 3m17s
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
MethodDefinition traegt steering_elements/ui_features/graph_profile; operating-context und FE-Registry ohne Archetyp-Ifs. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
785 B
Python
25 lines
785 B
Python
"""Built-in method: continuous_product — AP2.0a / AP2.4."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.graph.profiles import FULFILLMENT
|
|
from steering.methods.registrations._helpers import (
|
|
ELEM_NEXT,
|
|
register_product_like_method,
|
|
)
|
|
|
|
|
|
def register() -> None:
|
|
register_product_like_method(
|
|
key="continuous_product",
|
|
label="Produkt (kontinuierlich)",
|
|
description="Kontinuierlicher Betrieb — Ist zuerst, Plan als Orientierung",
|
|
next_action_strategy_key="continuous_product",
|
|
graph_profile=FULFILLMENT,
|
|
ui_features=frozenset(
|
|
{"continuousProductWorkMode", "steeringSnapshotOnWorkSprint"}
|
|
),
|
|
steering_elements=ELEM_NEXT
|
|
| frozenset({"gate_fulfillment", "work_cycle_scope"}),
|
|
)
|