All checks were successful
Deploy Development / deploy (push) Successful in 50s
Test Suite / pytest-backend (push) Successful in 3m49s
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 19s
Test Suite / playwright-smoke (push) Successful in 12s
apply_steering_event an Action done, Gate verify/reopen und Blocker resolve; lifecycle-Ketten methodenaware via slot_map; continuous_product slot_map; pytest v0.2. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
932 B
Python
27 lines
932 B
Python
"""Built-in method: continuous_product — AP2.0a / AP2.4."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.graph.profiles import FULFILLMENT
|
|
from steering.lifecycle.slot_maps import CONTINUOUS_PRODUCT_SLOTS, slot_map_to_tuple
|
|
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"}),
|
|
slot_map=slot_map_to_tuple(CONTINUOUS_PRODUCT_SLOTS),
|
|
)
|