All checks were successful
Deploy Development / deploy (push) Successful in 45s
Test Suite / pytest-backend (push) Successful in 1m23s
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 18s
Test Suite / playwright-smoke (push) Successful in 12s
Zweite Built-in-Methode mit meilensteinorientierter NextAction-Strategie, API und UI-Auswahl pro Vorhaben; AP0.10d Validation-Vorlagen. Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
675 B
Python
22 lines
675 B
Python
"""Built-in method: generic_operating."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.lifecycle.states import STANDARD_LIFECYCLE_STEPS
|
|
from steering.methods.registry import MethodDefinition, get_method, register_method
|
|
|
|
|
|
def register() -> None:
|
|
if get_method("generic_operating"):
|
|
return
|
|
register_method(
|
|
MethodDefinition(
|
|
key="generic_operating",
|
|
version="0.1.0",
|
|
label="Allgemeine Steuerung",
|
|
description="Standard-Lifecycle ohne methodenspezifische Spezialisierung",
|
|
default_lifecycle_steps=STANDARD_LIFECYCLE_STEPS,
|
|
next_action_strategy_key="default",
|
|
)
|
|
)
|