chant graph
Synopsis
Section titled “Synopsis”chant graph [path]Description
Section titled “Description”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.
# Graph Ops in current directorychant graph
# Graph Ops in a specific directorychant graph ./infraOutput Format
Section titled “Output Format”Each dependency is printed as one edge per line:
infra-bootstrap → alb-deployinfra-bootstrap → app-deployThe format is <dependency> → <dependent>, meaning the left Op must complete before the right Op can run.
Exit Codes
Section titled “Exit Codes”| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Discovery errors |