Files
git.stella-ops.org/docs/features/checked/cli/symbol-ingestion-cli.md
2026-02-14 09:11:48 +02:00

36 lines
1.6 KiB
Markdown

# Symbol Ingestion CLI
## Module
Cli
## Status
VERIFIED
## 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
## Verification
- **Verified**: 2026-02-13T15:30:00Z
- **Tier 0 (Source)**: pass -- all referenced source files exist on disk
- **Tier 1 (Build)**: pass -- module builds cleanly, 339 tests pass in StellaOps.Cli.Plugins.Tests
- **Tier 2d (Integration)**: pass -- targeted integration tests confirm behavioral correctness
- **Test Project**: `src/Cli/__Tests/StellaOps.Cli.Plugins.Tests/StellaOps.Cli.Plugins.Tests.csproj`
- **Evidence**: `docs/qa/feature-checks/runs/cli/symbol-ingestion-cli/run-001/tier2-integration-check.json`