gitextract_wnyi6ji5/ ├── .editorconfig ├── .github/ │ └── workflows/ │ ├── build_and_test.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── CLAUDE.md ├── Dockerfile ├── LICENSE ├── README.md ├── cliff.toml ├── cmd/ │ └── helm-schema/ │ ├── cli.go │ ├── main.go │ ├── main_test.go │ └── version.go ├── examples/ │ ├── Chart.yaml │ ├── values.schema.json │ └── values.yaml ├── go.mod ├── go.sum ├── install-binary.sh ├── pkg/ │ ├── chart/ │ │ ├── chart.go │ │ ├── chart_test.go │ │ └── searching/ │ │ └── dependency_charts.go │ ├── schema/ │ │ ├── annotate.go │ │ ├── annotate_test.go │ │ ├── err.go │ │ ├── err_test.go │ │ ├── root_schema_test.go │ │ ├── schema.go │ │ ├── schema_test.go │ │ ├── toposort.go │ │ ├── toposort_test.go │ │ ├── values_merge.go │ │ ├── worker.go │ │ └── worker_test.go │ └── util/ │ ├── file.go │ └── file_test.go ├── plugin.yaml ├── renovate.json ├── sign-plugin.sh ├── signing-key.asc └── tests/ ├── .gitignore ├── charts/ │ ├── Chart.yaml │ ├── ref_input.json │ ├── test_annotate_expected.yaml │ ├── test_annotate_input.yaml │ ├── test_helm_defaults.yaml │ ├── test_helm_defaults_expected.schema.json │ ├── test_ref.yaml │ ├── test_ref_expected.schema.json │ ├── test_ref_properties.yaml │ ├── test_ref_properties_expected.schema.json │ ├── test_ref_toplevel.yaml │ ├── test_ref_toplevel_expected.schema.json │ ├── test_simple.yaml │ └── test_simple_expected.schema.json ├── import-values/ │ ├── child/ │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── child-complex/ │ │ ├── Chart.yaml │ │ └── values.yaml │ ├── parent/ │ │ ├── Chart.yaml │ │ ├── values.schema.expected.json │ │ └── values.yaml │ └── parent-complex/ │ ├── Chart.yaml │ ├── values.schema.expected.json │ └── values.yaml ├── preexisting-schema/ │ ├── dep-with-schema/ │ │ ├── Chart.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ └── parent/ │ ├── Chart.yaml │ ├── values.schema.default-expected.json │ ├── values.schema.expected.json │ └── values.yaml ├── run.sh └── test-sign-plugin.sh