rudder-terraform-workflow

rudder-terraform-workflow is a skill for Claude Code from rudderlabs/rudder-agent-skills. It costs 57 tokens per session (1,934 once invoked), scanned A, original, MIT.

A guide for managing RudderStack, a customer-data platform, with Terraform, a tool that describes infrastructure in configuration files. It covers sources, destinations, connections, imports, and separate environments.

In plain words
What is it for?
Use it to write Terraform configuration, initialise and plan changes, apply them to a workspace, import existing resources, or organise development, staging, and production setups.
Why use it?
It helps keep RudderStack setup reviewable and repeatable instead of relying on manual dashboard changes. It also prompts confirmation before applying changes to a live environment.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is RUDDERSTACK_ACCESS_TOKEN=token ./scripts/bootstrap-terraform.sh > rudderstack.tf.

Part of the rudder-terraform plugin — 2 skills shipped together

Good fit Use it to write Terraform configuration, initialise and plan changes, apply them to a workspace, import existing resources, or organise development, staging, and production setups.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/rudderlabs/rudder-agent-skills
agentmods
npx agentmods add skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow

Made for: Claude Code.

Or install rudder-terraform, the plugin that ships this one along with the rest of its 2 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rudder-terraform-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow/github.svg)](https://agentmods.dev/skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow)
Your own site
<a href="https://agentmods.dev/skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow"><img src="https://agentmods.dev/badge/skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for rudder-terraform-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow"><img src="https://agentmods.dev/badge/skills/rudderlabs/rudder-agent-skills/rudder-terraform-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,934 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 18
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 221
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 232
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.01934
Opus 5 $0.00028 $0.00967
Sonnet 5 $0.00011 $0.00387
Haiku 4.5 $0.00006 $0.00193

Measured 13d ago against content hash 91ff451ddfce, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

rudder-terraform-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/rudder-terraform/skills/rudder-terraform-workflow/SKILL.md · 242 lines

How it starts

The opening of the file, as written. The whole thing — 242 lines — stays where its author put it; the contents beside it link to each section on GitHub.

RudderStack Terraform Workflow

The rudderlabs/rudderstack Terraform provider manages a RudderStack workspace as infrastructure-as-code: sources, destinations, and connections.

When to use

The user is authoring HCL for RudderStack, running terraform plan/apply against a workspace, migrating from UI-managed to Terraform-managed resources, importing existing resources, or organizing multi-env setups.

Preflight

  • Terraform ≥ 1.0 installed
  • Access token available as env var RUDDERSTACK_ACCESS_TOKEN (preferred) or in the provider block
  • Optional: override API base URL with RUDDERSTACK_API_URL (default: https://api.rudderstack.com)
  • Confirm with the user whether the target workspace is dev/staging/prod before any terraform apply

Provider setup

terraform {
  required_providers {
    rudderstack = {
      source  = "rudderlabs/rudderstack"
      version = "~> 4.4"
    }
  }
}

provider "rudderstack" {
  # access_token = "..."                    # or set RUDDERSTACK_ACCESS_TOKEN env var
  # api_url      = "https://api.rudderstack.com"
}

Resource catalog

Category Count Examples
Connection 1 rudderstack_connection — links source to destination
Sources ~50 SDK sources (JS, Android, iOS, Python, Go, etc.), webhooks, SaaS integrations
Destinations ~46 Warehouses, analytics, marketing, ad platforms, infrastructure

Source types

  • SDK sources (no config): JavaScript, Android, iOS, Python, Node.js, Go, Ruby, PHP, .NET, Flutter, Rust, Kotlin, Swift, Unity
  • Webhook sources (no config): HTTP, Shopify Webhook
  • SaaS integrations: Auth0, Braze, Slack, Segment, PagerDuty, Looker, Customer.io, Iterable, etc.

Destination types

  • Warehouses: BigQuery, Redshift, Snowflake, PostgreSQL, S3, GCS
  • Analytics: Google Analytics 4, Amplitude, Mixpanel, Posthog, Adobe Analytics
  • Marketing: Braze, Marketo, Intercom, Customer.io, HubSpot, Salesforce
  • Ad platforms: Google Ads, Facebook Pixel, TikTok Ads, LinkedIn Ads
  • Infrastructure: Kafka, Kinesis, Redis, Webhook/HTTP

Read the full file on GitHub · 242 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 242 lines · 57 tokens per session scan A 91ff451ddfce

Subscribe to this mod's changes

rudder-terraform-workflow is a skill published in the GitHub repository rudderlabs/rudder-agent-skills (18 stars, last pushed 8d ago), licensed MIT. It adds 57 tokens to every session and 1,934 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

scientific-figure-prompt-compiler

Transform concise scientific or technical descriptions into structured visual specifications and high-quality image-generation prompts. Use for scientific figures, technical diagrams, system architectures, mechanisms, workflows, spatial models, timelines, layered systems, and information-dense visuals. Model-agnostic…

basejb/skills · 72 tokens

seo-optimizer

Search Engine Optimization specialist for content strategy, technical SEO, keyword research, and ranking improvements. Use when optimizing website content, improving search rankings, conducting keyword analysis, or implementing SEO best practices. Expert in on-page SEO, meta tags, schema markup, and Core Web Vitals.

basejb/skills · 60 tokens

ai-collab-evaluator

A review of Claude Code session logs against four hiring criteria for working with AI: how you handle, use, and question AI, and how you weigh trade-offs.

basejb/skills · 169 tokens

learning-companion

A guided learning tool that turns official documents or other sources into lasting study notes through five stages, including explanation, recall, reflection, and next steps.

basejb/skills · 134 tokens

oss-tour

A guided method for learning an unfamiliar open-source repository in layers, from the whole project to folders and core modules. An open-source repository is a publicly available code project whose source can be inspected.

basejb/skills · 106 tokens

image-optimizer

An image-processing tool that converts images to WebP, an image format that can reduce file size while preserving visual quality. It handles individual images, groups of images, and whole directories.

basejb/skills · 43 tokens