Terraform Cloud workspace management, run monitoring, and log retrieval. Use when listing workspaces, checking run status, fetching plan/apply logs, or looking up providers and modules in the Terraform Registry.
Manages Terraform Cloud workspaces, monitors runs, and retrieves logs via API calls.
npx claudepluginhub bendrucker/claudeThis skill is limited to using the following tools:
references/api.mdmcp__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.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.