All checks were successful
Deploy Development / deploy (push) Successful in 44s
Test Suite / pytest-backend (push) Successful in 1m19s
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 11s
Persistierter Standard Lifecycle pro Initiative, backend/steering/ Skeleton, Attention-Refactor und Hook-Dispatch als Basis für Method Registry. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
389 B
Python
16 lines
389 B
Python
"""Adaptive Steering Core — AP1.0 Foundation."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from steering.hooks.registry import register_builtin_hooks
|
|
from steering.methods.registrations import generic_operating
|
|
|
|
|
|
def bootstrap_steering() -> None:
|
|
"""Register built-in hooks and methods (idempotent)."""
|
|
register_builtin_hooks()
|
|
generic_operating.register()
|
|
|
|
|
|
bootstrap_steering()
|