Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions packer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Agent skills for building machine images with Packer and HCP Packer.

## Plugins

### packer-builders
### build-machine-image

Skills for building images on AWS, Azure, and Windows.

Expand All @@ -14,7 +14,7 @@ Skills for building images on AWS, Azure, and Windows.
| azure-image-builder | Build Azure managed images and Azure Compute Gallery images |
| windows-builder | Platform-agnostic Windows image patterns with WinRM and PowerShell |

### packer-hcp
### publish-metadata-to-hcp

Skills for HCP Packer registry integration.

Expand All @@ -29,33 +29,33 @@ Skills for HCP Packer registry integration.
```bash
claude plugin marketplace add hashicorp/agent-skills

claude plugin install packer-builders@hashicorp
claude plugin install packer-hcp@hashicorp
claude plugin install packer-build-machine-image@hashicorp
claude plugin install packer-publish-metadata-to-hcp@hashicorp
```

### Individual Skills

```bash
# Builders
npx skills add hashicorp/agent-skills/packer/builders/skills/aws-ami-builder
npx skills add hashicorp/agent-skills/packer/builders/skills/azure-image-builder
npx skills add hashicorp/agent-skills/packer/builders/skills/windows-builder
# Build machine image
npx skills add hashicorp/agent-skills/packer/build-machine-image/skills/aws-ami-builder
npx skills add hashicorp/agent-skills/packer/build-machine-image/skills/azure-image-builder
npx skills add hashicorp/agent-skills/packer/build-machine-image/skills/windows-builder

# HCP Packer
npx skills add hashicorp/agent-skills/packer/hcp/skills/push-to-registry
# Publish metadata to HCP
npx skills add hashicorp/agent-skills/packer/publish-metadata-to-hcp/skills/push-to-registry
```

## Structure

```
packer/
├── builders/
├── build-machine-image/
│ ├── .claude-plugin/plugin.json
│ └── skills/
│ ├── aws-ami-builder/
│ ├── azure-image-builder/
│ └── windows-builder/
└── hcp/
└── publish-metadata-to-hcp/
├── .claude-plugin/plugin.json
└── skills/
└── push-to-registry/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "packer-builders",
"name": "packer-build-machine-image",
"version": "1.0.0",
"description": "Packer builder skills for AWS, Azure, and Windows image creation.",
"description": "Packer skills for building machine images on AWS, Azure, and Windows.",
"author": {
"name": "HashiCorp",
"url": "https://github.com/hashicorp"
},
"homepage": "https://developer.hashicorp.com/packer",
"homepage": "https://developer.hashicorp.com/packer/tutorials",
"repository": "https://github.com/hashicorp/agent-skills",
"license": "MPL-2.0",
"keywords": ["packer", "aws", "azure", "windows", "ami", "image", "builder"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "packer-hcp",
"name": "packer-publish-metadata-to-hcp",
"version": "1.0.0",
"description": "HCP Packer registry integration for tracking and managing image metadata.",
"author": {
"name": "HashiCorp",
"url": "https://github.com/hashicorp"
},
"homepage": "https://developer.hashicorp.com/hcp/docs/packer",
"homepage": "https://developer.hashicorp.com/packer/tutorials/hcp-get-started/hcp-push-artifact-metadata",
"repository": "https://github.com/hashicorp/agent-skills",
"license": "MPL-2.0",
"keywords": ["packer", "hcp-packer", "registry", "metadata", "image-tracking"]
Expand Down
Loading