27 lines
1.1 KiB
Markdown
27 lines
1.1 KiB
Markdown
# 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
|