Skip to main content

gluon CLI

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

Command map

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

Global flags

FlagMeaning
--config-dir, -cLegacy fallback path or glob for folder-shaped compositions
--versionPrint the CLI version
--helpShow command help

--config-dir can also be set through GLUON_CONFIG_DIR, but packaged composition sources declared in the intent are the recommended path.

Typical flow

gluon compositions lock --intent intent.yaml
gluon validate --intent intent.yaml
gluon plan --intent intent.yaml --output plan.json
gluon run --plan plan.json

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