From terraform
Manages Terraform Cloud workspaces, monitors runs, retrieves plan/apply logs via TFC API with curl/jq, and searches providers/modules in the registry.
npx claudepluginhub bendrucker/claude --plugin terraformThis skill is limited to using the following tools:
- **MCP tools** (`mcp__terraform`): workspace listing, run management, provider/module registry lookups
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
mcp__terraform): workspace listing, run management, provider/module registry lookupsUse MCP tools to find and inspect runs:
list_workspaces to find the workspace by namelist_runs with the workspace ID to see recent runsget_run_details with the run ID for status, relationships, and timestampsThe run details include relationships.plan.data.id and relationships.apply.data.id — use these to fetch logs.
The MCP server does not expose log retrieval. Use the TFC API directly:
# Get the apply details (includes log-read-url)
curl -s \
-H "Authorization: Bearer $TFE_TOKEN" \
-H "Content-Type: application/vnd.api+json" \
https://app.terraform.io/api/v2/applies/{apply-id} | jq -r '.data.attributes."log-read-url"'
Then fetch the raw logs from the archivist URL (no auth needed — pre-signed):
curl -s "$(archivist_url)"
The same pattern works for plans via /api/v2/plans/{plan-id}.
See references/api.md for full API details.
$TFE_TOKEN is sourced from:
terraform login (stored at ~/.terraform.d/credentials.tfrc.json)The MCP server reads TFE_TOKEN from the environment. For curl calls, use it as a Bearer token.
Provider and module searches are available via MCP tools (search_providers, search_modules, provider_details, module_details). No curl needed for registry operations.