A collection of Agent skills and Claude Code plugins for HashiCorp products. Install Agent Skills in GitHub Copilot, Claude Code, Opencode, Cursor, and more: First, add the marketplace, then install plugins: Or use the interactive interface: Each product folder contains plugins, and each plugin contains skills:
Add this skill
npx mdskills install hashicorp/agent-skillsWell-organized collection of HashiCorp product skills with clear installation paths
1# HashiCorp Agent Skills23A collection of Agent skills and Claude Code plugins for HashiCorp products.45| Product | Use cases |6|:--------|:----------|7| [Terraform](./terraform/) | Write HCL code, build modules, develop providers, and run tests |8| [Packer](./packer/) | Build machine images on AWS, Azure, and Windows; integrate with HCP Packer registry |910> **Legal Note:** Your use of a third party MCP Client/LLM is subject solely to the terms of use for such MCP/LLM, and IBM is not responsible for the performance of such third party tools. IBM expressly disclaims any and all warranties and liability for third party MCP Clients/LLMs, and may not be able to provide support to resolve issues which are caused by the third party tools.1112## Installation1314### Individual Skills1516Install Agent Skills in GitHub Copilot, Claude Code, Opencode, Cursor, and more:1718```bash19# List all skills20npx skills add hashicorp/agent-skills2122# Install a specific skill23npx skills add hashicorp/agent-skills/terraform/code-generation/skills/terraform-style-guide24```2526### Claude Code Plugin2728First, add the marketplace, then install plugins:2930```bash31# Add the HashiCorp marketplace32claude plugin marketplace add hashicorp/agent-skills3334# Install plugins35claude plugin install terraform-code-generation@hashicorp36claude plugin install terraform-module-generation@hashicorp37claude plugin install terraform-provider-development@hashicorp38claude plugin install packer-builders@hashicorp39claude plugin install packer-hcp@hashicorp40```4142Or use the interactive interface:43```bash44/plugin45```4647## Structure4849```50agent-skills/51├── .claude-plugin/52│ └── marketplace.json53├── terraform/ # Terraform skills54├── packer/ # Packer skills55├── <product>/ # Future products (Vault, Consul, etc.)56└── README.md57```5859Each product folder contains plugins, and each plugin contains skills:6061```62<product>/63└── <plugin>/64 ├── .claude-plugin/plugin.json65 └── skills/66 └── <skill>/67 └── SKILL.md68```6970## License7172MPL-2.073
Full transparency — inspect the skill content before installing.