Context
PR #18 refreshed the README and the three user-facing --help/output strings (cluster info, dataset, dataset push), but missed one: the root command's Long help in internal/cli/root.go. It still reads:
Today this binary implements only version and completion — see .../issues/147 for the v0.1 roadmap. Subsequent phases land subcommands incrementally.
That shows on tracebloc --help and contradicts both the README and the four subcommands actually registered a few lines below (version, ingest, cluster, dataset).
Fix
Replace the stale block with copy that describes the shipped v0.1 command set (dataset push, ingest validate, cluster info, plus version/completion). Docs/strings only — no behavior change.
Acceptance criteria
tracebloc --help no longer claims "only version and completion"; it names the shipped commands.
go build, go vet ./..., go test ./..., gofmt -s -l all clean.
Rolls up the same intent as #18 (which shipped without a ticket); filing this one for board hygiene since #18 is already merged.
Context
PR #18 refreshed the README and the three user-facing
--help/output strings (cluster info,dataset,dataset push), but missed one: the root command'sLonghelp ininternal/cli/root.go. It still reads:That shows on
tracebloc --helpand contradicts both the README and the four subcommands actually registered a few lines below (version,ingest,cluster,dataset).Fix
Replace the stale block with copy that describes the shipped v0.1 command set (
dataset push,ingest validate,cluster info, plusversion/completion). Docs/strings only — no behavior change.Acceptance criteria
tracebloc --helpno longer claims "onlyversionandcompletion"; it names the shipped commands.go build,go vet ./...,go test ./...,gofmt -s -lall clean.Rolls up the same intent as #18 (which shipped without a ticket); filing this one for board hygiene since #18 is already merged.