install
source · Clone the upstream repo
git clone https://github.com/MacPhobos/research-mind
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/MacPhobos/research-mind "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/universal-infrastructure-terraform" ~/.claude/skills/macphobos-research-mind-universal-infrastructure-terraform && rm -rf "$T"
manifest:
.claude/skills/universal-infrastructure-terraform/skill.mdsource content
Terraform
Quick Start (workflow)
terraform init terraform plan -out=tfplan terraform apply tfplan
Safety Checklist
- State: remote backend + locking; separate state per environment
- Reviews: plan in CI; apply from a trusted runner with approvals
- Guardrails:
and policy checks for prodprevent_destroy
Load Next (References)
— backends, locking, workspaces vs separate state, driftreferences/state-and-environments.md
— module interfaces, versioning, composition patternsreferences/modules-and-composition.md
— CI plan/apply, policy-as-code, safe migrationsreferences/workflows-and-guardrails.md