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>
36 lines
794 B
Python
36 lines
794 B
Python
"""Method Registry — built-in steering methods."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
_METHODS: dict[str, "MethodDefinition"] = {}
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class MethodDefinition:
|
|
key: str
|
|
version: str
|
|
label: str
|
|
description: str
|
|
default_lifecycle_steps: tuple[str, ...]
|
|
next_action_strategy_key: str = "default"
|
|
|
|
|
|
def register_method(defn: MethodDefinition) -> None:
|
|
if defn.key in _METHODS:
|
|
raise ValueError(f"Method already registered: {defn.key}")
|
|
_METHODS[defn.key] = defn
|
|
|
|
|
|
def get_method(key: str) -> MethodDefinition | None:
|
|
return _METHODS.get(key)
|
|
|
|
|
|
def list_methods() -> tuple[MethodDefinition, ...]:
|
|
return tuple(_METHODS.values())
|
|
|
|
|
|
def clear_methods_for_tests() -> None:
|
|
_METHODS.clear()
|