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,27 @@
# Excititor VEX Ingest Management CLI
## Module
Cli
## Status
IMPLEMENTED
## Description
Manage Excititor VEX ingest workflows: initialize state with checkpoint resume, pull from providers with time windows and force mode, and run exports.
## Implementation Details
- **Command Handlers**: `src/Cli/StellaOps.Cli/Commands/CommandHandlers.cs` -- Excititor-related handlers
- **VEX Observations Client**: `src/Cli/StellaOps.Cli/Services/VexObservationsClient.cs` / `IVexObservationsClient.cs` -- VEX observations API client
- **Commands**:
- `stella vex ingest init` -- initialize VEX ingest state
- `stella vex ingest pull --provider <name> --from <date> --to <date>` -- pull VEX statements from provider
- `stella vex ingest pull --force` -- force re-pull all statements
- `stella vex ingest export` -- export ingested VEX data
## E2E Test Plan
- [ ] Run `stella vex ingest init` and verify state initialized
- [ ] Run `stella vex ingest pull --provider osv` and verify VEX statements pulled
- [ ] Run `stella vex ingest pull --from 2024-01-01 --to 2024-12-31` and verify time window filtering
- [ ] Run `stella vex ingest pull --force` and verify force re-pull
- [ ] Run `stella vex ingest export` and verify export execution
- [ ] Verify checkpoint resume works after interrupted pull