Use sora --help for the installed binary’s exact help text, and sora <command> --help for command-specific options. This page summarizes the common workflow commands, aliases, and short flags.
sora export --project project.toml --data-root data --format json --out generated/config.json
sora e -p project.toml -d data -f binary -o generated/config.sora
Option
Description
-f, --format <NAME>
Export format, such as binary, json, debug-json, cbor, sora-protobuf, or typed-protobuf.
`–default-source-format <csv
json
-p, --project <PATH>
Project manifest path.
-d, --data-root <DIR>
Data input root.
-o, --out <PATH>
Output file or directory, depending on export format.
Compare two data roots using the same project schema.
sora diff --project project.toml --left-root old-data --right-root data --out generated/diff.json
sora d -p project.toml -l old-data -r data -o generated/diff.json
Preview or apply schema header updates to existing Excel data workbooks while preserving data rows. Removed schema fields stay as ignored legacy columns.
sora excel-sync --project project.toml --data-root data
sora es -p project.toml -d data -w
Option
Description
-p, --project <PATH>
Project manifest path.
-d, --data-root <DIR>
Data workbook root.
-s, --scope <NAME>
Sync only schema items included in a scope.
-w, --write
Write workbook changes. Without this flag, the command previews changes only.