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,22 @@
# Scan Snapshot Compare CLI
## Module
Cli
## Status
IMPLEMENTED
## Description
Compare two scan snapshots by digest producing structured security state diffs with severity filtering and multiple output formats (table, JSON, SARIF).
## Implementation Details
- **Command Group**: `src/Cli/StellaOps.Cli/Commands/Compare/CompareCommandBuilder.cs` -- `CompareCommandBuilder` for compare operations
- **Commands**:
- `stella compare <old-digest> <new-digest>` -- compare scan snapshots. Options: `--severity critical|high|medium|low`, `--format table|json|sarif`, `--output <path>`
## E2E Test Plan
- [ ] Run `stella compare sha256:old sha256:new` and verify diff output
- [ ] Run with `--severity critical` and verify severity filtering
- [ ] Run with `--format sarif` and verify SARIF output
- [ ] Run with `--format json` and verify structured diff
- [ ] Verify new/removed/changed vulnerabilities identified