I am using code-review-graph to provide context for AI assistants (Claude Code/Cursor) in a DevOps-heavy environment. While the tool is excellent for application code (Python, Go, TS), it currently lacks structural parsing for Infrastructure-as-Code (IaC) files like Terraform (.tf, .hcl) and Helm Charts.
I would like to see code-review-graph support structural mapping for:
Terraform (HCL): Identifying resource blocks, modules, and variable dependencies so the AI understands the "blast radius" of infrastructure changes.
Helm Charts (YAML/Go Templates): Mapping the relationship between values.yaml and template files.
Additional context:
Since this tool already uses Tree-sitter, these languages have mature grammars available:
tree-sitter-hcl
tree-sitter-yaml
Adding these would make this the go-to tool for DevOps engineers using AI.
I am using code-review-graph to provide context for AI assistants (Claude Code/Cursor) in a DevOps-heavy environment. While the tool is excellent for application code (Python, Go, TS), it currently lacks structural parsing for Infrastructure-as-Code (IaC) files like Terraform (.tf, .hcl) and Helm Charts.
I would like to see code-review-graph support structural mapping for:
Terraform (HCL): Identifying resource blocks, modules, and variable dependencies so the AI understands the "blast radius" of infrastructure changes.
Helm Charts (YAML/Go Templates): Mapping the relationship between values.yaml and template files.
Additional context:
Since this tool already uses Tree-sitter, these languages have mature grammars available:
tree-sitter-hcl
tree-sitter-yaml
Adding these would make this the go-to tool for DevOps engineers using AI.