Some checks failed
Deploy Development / deploy (push) Failing after 48s
Test Suite / pytest-backend (push) Failing after 1s
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
RoadmapItem type work_cycle, Sprint-API, agile_iteration Next-Action-Strategie; Steering-Snapshot zeigt active_work_cycle. Co-authored-by: Cursor <cursoragent@cursor.com>
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
"""AP2.0a — remaining method stubs."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.methods.registrations._helpers import register_stub_method
|
|
|
|
|
|
def register() -> None:
|
|
register_stub_method(
|
|
key="maturity_progression",
|
|
label="Reifegrad-Entwicklung",
|
|
description="Stufen, Routinen, historische Entwicklung",
|
|
next_action_strategy_key="maturity_progression",
|
|
)
|
|
register_stub_method(
|
|
key="sequential_dependency",
|
|
label="Sequenzielle Abhängigkeit",
|
|
description="Graph-Pfade, kritischer Pfad (read model)",
|
|
next_action_strategy_key="sequential_dependency",
|
|
)
|
|
register_stub_method(
|
|
key="recurring_control",
|
|
label="Rhythmus-Steuerung",
|
|
description="Dauerprogramm, fällig/überfällig, Abweichungen",
|
|
next_action_strategy_key="recurring_control",
|
|
)
|
|
register_stub_method(
|
|
key="queue_pull",
|
|
label="Inbox / Queue",
|
|
description="Pull oder Empfehlung aus Queue",
|
|
next_action_strategy_key="queue_pull",
|
|
)
|
|
register_stub_method(
|
|
key="agile_iteration",
|
|
label="Iterations-Zeitbox",
|
|
description="Sprint/work_cycle Profil auf Product/Programm",
|
|
next_action_strategy_key="agile_iteration",
|
|
)
|
|
register_stub_method(
|
|
key="dispute_procedure",
|
|
label="Verfahren / Konflikt",
|
|
description="Reaktive Steuerung, Fristen, Entscheidungen",
|
|
next_action_strategy_key="default",
|
|
)
|
|
register_stub_method(
|
|
key="chapter_based_progression",
|
|
label="Kapitel-Entwicklung",
|
|
description="Inhaltliche Progression, Reviews",
|
|
next_action_strategy_key="default",
|
|
)
|