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,26 @@
# Symbol Ingestion CLI
## Module
Cli
## Status
IMPLEMENTED
## Description
Symbol table operations: ingest symbols from binary files, upload manifests to backend, verify symbol integrity, and check service health. Supports dry-run mode.
## Implementation Details
- **Command Group**: `src/Cli/StellaOps.Cli/Commands/SignalsCommandGroup.cs` -- signals including symbol operations
- **Commands**:
- `stella symbols ingest <binary>` -- ingest symbols from binary. Options: `--dry-run`, `--format json`
- `stella symbols upload <manifest>` -- upload symbol manifest
- `stella symbols verify` -- verify symbol integrity
- `stella symbols health` -- check symbol service health
- **Tests**: `src/Cli/__Tests/StellaOps.Cli.Tests/Commands/SignalsCommandTests.cs`
## E2E Test Plan
- [ ] Run `stella symbols ingest ./binary.elf` and verify symbol ingestion
- [ ] Run with `--dry-run` and verify no actual upload
- [ ] Run `stella symbols upload ./manifest.json` and verify manifest upload
- [ ] Run `stella symbols verify` and verify integrity check
- [ ] Run `stella symbols health` and verify service status