Claude Code skills for developing Massdriver bundles and infrastructure components
npx claudepluginhub massdriver-cloud/claude-pluginsDevelop 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.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
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.