Some checks failed
Deploy Development / deploy (push) Successful in 48s
Test Suite / pytest-backend (push) Failing after 3m23s
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
Decision-Lock, Spec-D-Methoden und C1-Massstab-Vollspecs als Zielbild; Steering-Registry/Compat und Horizon-Tests an die Normierung anbinden. Implementierungsausreichendheit bleibt bewusst offen. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
869 B
Python
31 lines
869 B
Python
"""Adaptive Steering Core — AP1.0 Foundation + AP2.0 methods."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.hooks.registry import register_builtin_hooks
|
|
from steering.methods.registrations import (
|
|
ap20_method_stubs,
|
|
continuous_product,
|
|
generic_operating,
|
|
product_milestone_driven,
|
|
program_delivery,
|
|
)
|
|
from steering.strategies.next_action import register_builtin_strategies
|
|
|
|
|
|
def bootstrap_steering() -> None:
|
|
"""Register built-in hooks, methods and strategies (idempotent)."""
|
|
register_builtin_hooks()
|
|
register_builtin_strategies()
|
|
generic_operating.register()
|
|
product_milestone_driven.register()
|
|
program_delivery.register()
|
|
continuous_product.register()
|
|
ap20_method_stubs.register()
|
|
from steering.methods.registry import validate_method_registry
|
|
|
|
validate_method_registry()
|
|
|
|
|
|
bootstrap_steering()
|