gitextract_z9sttyor/ ├── .claude-plugin/ │ └── marketplace.json ├── .copywrite.hcl ├── .github/ │ ├── .tessl/ │ │ └── skill-review-cache.json │ └── workflows/ │ ├── tessl-skill-review-comment.yml │ ├── tessl-skill-review.yml │ └── validate.yml ├── AGENTS.md ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── packer/ │ ├── README.md │ ├── builders/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── skills/ │ │ ├── aws-ami-builder/ │ │ │ └── SKILL.md │ │ ├── azure-image-builder/ │ │ │ └── SKILL.md │ │ └── windows-builder/ │ │ └── SKILL.md │ └── hcp/ │ ├── .claude-plugin/ │ │ └── plugin.json │ └── skills/ │ └── push-to-registry/ │ └── SKILL.md ├── scripts/ │ └── validate-structure.sh └── terraform/ ├── README.md ├── code-generation/ │ ├── .claude-plugin/ │ │ └── plugin.json │ └── skills/ │ ├── azure-verified-modules/ │ │ └── SKILL.md │ ├── terraform-search-import/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── MANUAL-IMPORT.md │ │ └── scripts/ │ │ └── list_resources.sh │ ├── terraform-style-guide/ │ │ ├── SECURITY.md │ │ └── SKILL.md │ └── terraform-test/ │ ├── SKILL.md │ └── references/ │ ├── CI_CD.md │ ├── EXAMPLES.md │ └── MOCK_PROVIDERS.md ├── module-generation/ │ ├── .claude-plugin/ │ │ └── plugin.json │ └── skills/ │ ├── refactor-module/ │ │ └── SKILL.md │ └── terraform-stacks/ │ ├── SKILL.md │ └── references/ │ ├── api-monitoring.md │ ├── component-blocks.md │ ├── deployment-blocks.md │ ├── examples.md │ ├── linked-stacks.md │ └── troubleshooting.md └── provider-development/ ├── .claude-plugin/ │ └── plugin.json └── skills/ ├── new-terraform-provider/ │ ├── SKILL.md │ └── assets/ │ └── main.go ├── provider-actions/ │ └── SKILL.md ├── provider-docs/ │ ├── SKILL.md │ ├── agents/ │ │ └── openai.yaml │ └── references/ │ └── hashicorp-provider-docs.md ├── provider-resources/ │ └── SKILL.md ├── provider-test-patterns/ │ ├── SKILL.md │ └── references/ │ ├── checks.md │ ├── ephemeral.md │ └── sweepers.md └── run-acceptance-tests/ └── SKILL.md