Files
git.stella-ops.org/docs/features/unchecked/cli/settings-consolidation-under-stella-config.md

26 lines
1.2 KiB
Markdown

# Settings Consolidation under stella config
## Module
Cli
## Status
IMPLEMENTED
## Description
Unification of scattered settings commands (notify, feeds, integrations, registry) under a single `stella config` umbrella for improved discoverability.
## Implementation Details
- **Command Group**: `src/Cli/StellaOps.Cli/Commands/ConfigCommandGroup.cs` -- consolidated config commands
- **Config Catalog**: `src/Cli/StellaOps.Cli/Commands/ConfigCatalog.cs` -- catalog of config items
- **Route Mapping**: `src/Cli/StellaOps.Cli/cli-routes.json` -- deprecated routes for old paths
- **Tests**: `src/Cli/__Tests/StellaOps.Cli.Tests/Integration/SettingsConsolidationTests.cs`
- **Consolidated paths**: notify -> config notify, feeds -> config feeds, integrations -> config integrations, registry -> config registry, sources -> config sources, signals -> config signals
## E2E Test Plan
- [ ] Run `stella config notify channels list` and verify consolidated path works
- [ ] Run `stella config feeds list` and verify feed listing
- [ ] Run `stella config integrations list` and verify integrations
- [ ] Run `stella config registry list` and verify registries
- [ ] Verify old paths show deprecation warnings
- [ ] Verify SettingsConsolidationTests pass