All checks were successful
Deploy Development / deploy (push) Successful in 50s
Test Suite / pytest-backend (push) Successful in 3m49s
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 19s
Test Suite / playwright-smoke (push) Successful in 12s
apply_steering_event an Action done, Gate verify/reopen und Blocker resolve; lifecycle-Ketten methodenaware via slot_map; continuous_product slot_map; pytest v0.2. Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
990 B
Python
34 lines
990 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.lifecycle.slot_providers import register_default_slot_providers
|
|
|
|
register_default_slot_providers()
|
|
from steering.methods.registry import validate_method_registry
|
|
|
|
validate_method_registry()
|
|
|
|
|
|
bootstrap_steering()
|