Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Develop and test Massdriver infrastructure bundles with interactive workflows: /develop for full bundle development with deploy loops, /test-upgrade for day 2 upgrade validation, and /gen for quick scaffolding. Includes safety guardrails, compliance automation, and GraphQL API integration.
npx claudepluginhub massdriver-cloud/claude-plugins --plugin massdriverStart interactive bundle development workflow with full deploy loop and compliance remediation
Quickly generate a bundle scaffold without the full interactive deploy loop
Test a bundle version upgrade by cloning production package config to a test environment
Interactive bundle development agent for creating and testing Massdriver infrastructure bundles. Use when the user wants to "create a bundle", "develop a bundle", "build a new bundle", "add a bundle for [use case]", or describes infrastructure they want to package. Handles the full lifecycle: requirements gathering, scaffolding, deployment testing, and compliance remediation.
Day 2 upgrade testing agent for validating bundle version upgrades against production-like configurations. Use when the user wants to "test an upgrade", "validate a version bump", "test day 2 operations", "verify bundle upgrade path", or mentions testing a new version of a bundle. Forks production config to a test environment and validates the upgrade path.
Executes bash commands
Hook triggers when Bash tool is used
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Generate Infrastructure as Code for Terraform, CloudFormation, Pulumi, and more
Cloud infrastructure agents — cloud, container, SRE specialists
Terraform and Terraform Cloud - infrastructure as code
Terraform module creation and infrastructure planning
Deployment engineering with Terraform and infrastructure as code
Infrastructure and deployment plugin for Arness with progressive zero-config init — auto-configures with sensible defaults on first skill invocation, no upfront ceremony required. 23 skills and 9 agents covering containerization, IaC generation, deployment, CI/CD pipelines, environment management, secrets, monitoring, migration, and structured change management pipeline. Can operate standalone or alongside the arn-code plugin.
Build infrastructure bundles for Massdriver, the internal developer platform that turns infrastructure-as-code into reusable, self-service components with built-in guardrails.
# Add the marketplace
/plugin marketplace add massdriver-cloud/claude-plugins
# Install the plugin
/plugin install massdriver@massdriver-cloud-claude-plugins
/massdriver:develop - Full Bundle DevelopmentInteractive workflow for creating and testing bundles with deploy loop and compliance remediation.
/massdriver:develop PostgreSQL database for application backends with dev/staging/prod presets
/massdriver:develop S3 bucket for static asset storage with CloudFront CDN
What it does:
agent<SUFFIX>)/massdriver:test-upgrade - Day 2 Upgrade TestingValidate bundle version upgrades by cloning production package config to a test environment.
/massdriver:test-upgrade api-prod-database 1.3.0
Package IDs follow the format {project}-{environment}-{manifest}.
What it does:
/massdriver:gen - Quick ScaffoldingGenerate a bundle without the deploy loop.
/massdriver:gen RDS MySQL for OLTP workloads
This plugin helps platform engineers create and test Massdriver bundles—reusable IaC modules that package Terraform, OpenTofu, or Helm with input schemas, artifact contracts, and operational policies.
Capabilities:
The plugin auto-activates when:
bundles/, artifact-definitions/, or platforms/ directoriesmassdriver.yaml filesclaude-plugins/
├── .claude-plugin/
│ └── marketplace.json
└── massdriver/
├── .claude-plugin/
│ └── plugin.json
├── agents/
│ ├── bundle-dev.md # Full development workflow
│ └── upgrade-tester.md # Day 2 upgrade testing
├── commands/
│ ├── develop.md # /massdriver:develop
│ ├── test-upgrade.md # /massdriver:test-upgrade
│ └── gen.md # /massdriver:gen
├── hooks/
│ └── hooks.json # Safety guardrails
├── templates/
│ └── massdriver.local.md # Settings template
└── skills/
└── massdriver/
├── SKILL.md # Core knowledge
├── PATTERNS.md # Bundle and artifact examples
└── references/
├── graphql.md # GraphQL API operations
├── alarms.md # AWS/GCP/Azure monitoring
└── compliance.md # Checkov remediation
The plugin includes automatic safety hooks that hard block:
mass bundle publish without --development flagproduction_pattern)Read-only operations (viewing logs, artifacts) are always allowed.
Create .claude/massdriver.local.md in your project:
---
mass_profile: default
production_pattern: (prod|production)
organization_id: ""
default_test_project: ""
---
| Setting | Description |
|---|---|
mass_profile | CLI profile from ~/.config/massdriver/config.yaml |
production_pattern | Regex to identify production environments (protected) |
organization_id | Default org ID (optional) |
default_test_project | Where to create test environments (optional) |
See massdriver/templates/massdriver.local.md for full documentation.