vona-cli
v1.1.139
Published
vona cli
Readme
vona-cli
This package is the thin Vona CLI entrypoint.
Purpose
From the monorepo root, npm run vona resolves to this package and launches the backend-oriented CLI flow.
Primary entrypoint:
src/bin/vona.ts
This entrypoint stays intentionally small. It handles top-level argument parsing, the special play dispatch path, and handoff to the Vona command runtime.
Source of truth
Do not treat this package as the full command catalog. The authoritative Vona command-family registry lives in:
../../packages-cli/cli-set-api/src/lib/commands.ts
Inspect that file first when you need to know:
- which command families exist
- which command names are registered
- which command module implements each entry
Current top-level families include:
bincreateinittools
Where command details live
Each command module in ../../packages-cli/cli-set-api/src/lib/command/ provides the main CLI-facing metadata, including:
info.titleinfo.usageoptions
Representative example:
../../packages-cli/cli-set-api/src/lib/command/bin.play.ts
Recommended navigation path
- start from
npm run vona - inspect
src/bin/vona.tsonly for top-level dispatch behavior - inspect
cli-set-api/src/lib/commands.tsfor the authoritative catalog - inspect the specific command module for usage and options
Canonical public reference
For the compact top-level overview shared across Vona and Zova, start with:
../../../cabloy-docs/reference/cli-reference.md
