← All plugins
packer-builders
v1.0.0Packer builder skills for AWS, Azure, and Windows image creation.
Claude Code3 skills
by HashiCorpMPL-2.0790updated 5 days ago
Source
git clone https://github.com/hashicorp/agent-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is packer/builders/ inside the repository.
Layout
packer/builders/
├── .claude-plugin/plugin.json├── skills/aws-ami-builder/SKILL.md├── skills/azure-image-builder/SKILL.md└── skills/windows-builder/SKILL.md
Skills3
aws-ami-builderskills/aws-ami-builder/SKILL.md
Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances.
azure-image-builderskills/azure-image-builder/SKILL.md
Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs.
windows-builderskills/windows-builder/SKILL.md
Build Windows images with Packer using WinRM communicator and PowerShell provisioners. Use when creating Windows AMIs, Azure images, or VMware templates.
Manifests1
packer/builders/.claude-plugin/plugin.json
{
"name": "packer-builders",
"version": "1.0.0",
"description": "Packer builder skills for AWS, Azure, and Windows image creation.",
"author": {
"name": "HashiCorp",
"url": "https://github.com/hashicorp"
},
"homepage": "https://developer.hashicorp.com/packer",
"repository": "https://github.com/hashicorp/agent-skills",
"license": "MPL-2.0",
"keywords": [
"packer",
"aws",
"azure",
"windows",
"ami",
"image",
"builder"
]
}