Some checks failed
Deploy Development / deploy (push) Successful in 46s
Test Suite / pytest-backend (push) Failing after 2m2s
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
PO-Dokumente (ADP v0.2, MVP v0.3) und Minimal Complete Slice: Registry-Methoden, Initiative/Project-Spiegel, Default-Methode bei Anlage, Lagebild mit Archetyp und Guidance. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
770 B
Python
28 lines
770 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()
|
|
|
|
|
|
bootstrap_steering()
|