Skip to main content

ciz CLI

The root ciz command is the entry point for planning, inspection, and execution.

Command map

CommandPurpose
ciz planCompile intent and compositions into a deterministic execution plan
ciz runDry-run or execute a compiled plan
ciz validateValidate intent and discovered components against schemas
ciz debugInspect intent processing and planning internals
ciz compositionsList or inspect available compositions
ciz componentList components or inspect a merged component view
ciz completionGenerate shell completion scripts

Global flags

FlagMeaning
--config-dir, -cPath or glob used to load composition assets
--versionPrint the CLI version
--helpShow command help

--config-dir can also be set through CIZ_CONFIG_DIR. The deprecated LITECI_CONFIG_DIR alias is still accepted.

Typical flow

ciz validate --intent intent.yaml --config-dir assets/config/compositions
ciz plan --intent intent.yaml --config-dir assets/config/compositions --output plan.json
ciz run --plan plan.json

Read the command-specific pages next if you need examples and flag details.