f25dc7b2c3
Implement strategy registry integration as spec §47561 by adding: - load_strategies_from_config() in context_strategies.py for TOML-driven strategy bootstrapping (register builtins, discover custom plugins via module:ClassName, set enabled list) - Re-exports of StrategyRegistry, StrategyConfig, StrategyRegistryEntry, StrategyNotFoundError, StrategyRegistrationError and ContextStrategy from strategy_registry and acms_service modules - __all__ export list and DEFAULT_ENABLED_STRATEGIES constant Fix StrategyRegistry.validate_registry() to skip resource_types check for v1 pipeline strategies (context_strategies.py, acms_service.py) whose StrategyCapabilities dataclass lacks the domain-model resource_types field, preventing false-positive warnings. Adds _is_v1_pipeline_caps() helper. Auto-load strategy configuration from Settings in ACMSPipeline.__init__() when a Settings object is provided, reading context.strategies config and registering/ enabling strategies via the plugin loader.