semi implemented and features implemented save checkpoint

This commit is contained in:
master
2026-02-08 18:00:49 +02:00
parent 04360dff63
commit 1bf6bbf395
20895 changed files with 716795 additions and 64 deletions

View File

@@ -0,0 +1,25 @@
# Tenant Context Management CLI
## Module
Cli
## Status
IMPLEMENTED
## Description
Multi-tenant context switching: list available tenants, set/use a default tenant context, show current tenant, and clear the active context.
## Implementation Details
- **Tenant Store**: `src/Cli/StellaOps.Cli/Services/TenantProfileStore.cs` -- tenant profile management
- **Commands**:
- `stella tenants list` -- list available tenants
- `stella tenants use <tenant-id>` -- set default tenant context
- `stella tenants current` -- show current active tenant
- `stella tenants clear` -- clear active tenant context
## E2E Test Plan
- [ ] Run `stella tenants list` and verify tenant listing
- [ ] Run `stella tenants use <id>` and verify context set
- [ ] Run `stella tenants current` and verify current tenant shown
- [ ] Run `stella tenants clear` and verify context cleared
- [ ] Verify subsequent commands use selected tenant context