Feature: Legacy plan persistence removal As a developer migrating to the v3 plan lifecycle, I want legacy plan paths to emit deprecation warnings, so that I know to use PlanLifecycleService instead. Background: Given a clean test environment for legacy removal # --- PlanService deprecation --- Scenario: PlanService emits deprecation warning on instantiation When I instantiate PlanService Then a DeprecationWarning mentioning "PlanService is deprecated" is raised Scenario: PlanService still functions after deprecation warning When I instantiate PlanService And I call create_plan on the legacy service Then the plan is created successfully # --- PlanRepository deprecation --- Scenario: PlanRepository emits deprecation warning on instantiation When I instantiate PlanRepository Then a DeprecationWarning mentioning "PlanRepository is deprecated" is raised # --- ChangeRepository deprecation --- Scenario: ChangeRepository emits deprecation warning on instantiation When I instantiate ChangeRepository Then a DeprecationWarning mentioning "ChangeRepository is deprecated" is raised # --- CLI programmatic wrappers deprecation --- Scenario: tell_command emits deprecation warning When I call tell_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: build_command emits deprecation warning When I call build_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: apply_command emits deprecation warning When I call apply_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: new_command emits deprecation warning When I call new_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: current_command emits deprecation warning When I call current_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: list_command emits deprecation warning When I call list_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: cd_command emits deprecation warning When I call cd_command programmatically Then a DeprecationWarning mentioning "legacy" is raised Scenario: continue_command emits deprecation warning When I call continue_command programmatically Then a DeprecationWarning mentioning "legacy" is raised # --- PlanLifecycleService is NOT deprecated --- Scenario: PlanLifecycleService does NOT emit deprecation warnings When I instantiate PlanLifecycleService Then no DeprecationWarning is raised # --- UnitOfWorkContext plans accessor is deprecated --- Scenario: UnitOfWorkContext plans property emits deprecation warning When I access the plans property on UnitOfWorkContext Then a DeprecationWarning mentioning "deprecated" is raised