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,29 @@
# Concelier Database Operations CLI
## Module
Cli
## Status
IMPLEMENTED
## Description
Trigger Concelier advisory database operations: connector fetch/parse/map stages with mode selection (init/resume/cursor), canonical merge reconciliation, and export jobs with ORAS publishing and offline bundle toggles.
## Implementation Details
- **Command Group**: `src/Cli/StellaOps.Cli/Commands/FeedsCommandGroup.cs` -- feed management commands (consolidated under config)
- **Command Handlers**: `src/Cli/StellaOps.Cli/Commands/CommandHandlers.Feeds.cs` -- feed operation handlers
- **Observations Client**: `src/Cli/StellaOps.Cli/Services/ConcelierObservationsClient.cs` / `IConcelierObservationsClient.cs` -- Concelier API client
- **Commands**:
- `stella config feeds fetch --mode init|resume|cursor` -- trigger connector fetch stage
- `stella config feeds parse` -- trigger parse stage
- `stella config feeds merge` -- canonical merge reconciliation
- `stella config feeds export --oras --offline-bundle` -- export with ORAS publishing and offline bundle options
## E2E Test Plan
- [ ] Run `stella config feeds fetch --mode init` and verify initial fetch triggered
- [ ] Run `stella config feeds fetch --mode resume` and verify incremental fetch
- [ ] Run `stella config feeds parse` and verify parse stage execution
- [ ] Run `stella config feeds merge` and verify canonical merge reconciliation
- [ ] Run `stella config feeds export --oras` and verify ORAS publishing
- [ ] Run `stella config feeds export --offline-bundle` and verify offline bundle created
- [ ] Verify error handling for failed connector operations