Skip to content

chant graph

chant graph [path]

chant graph discovers all *.op.ts files under the given path and prints the dependency edges declared via the depends field of each Op.

If no Ops declare dependencies the output is No Op dependencies. If no *.op.ts files are found the output is No Ops found.

Terminal window
# Graph Ops in current directory
chant graph
# Graph Ops in a specific directory
chant graph ./infra

Each dependency is printed as one edge per line:

infra-bootstrap → alb-deploy
infra-bootstrap → app-deploy

The format is <dependency> → <dependent>, meaning the left Op must complete before the right Op can run.

CodeMeaning
0Success
1Discovery errors