AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Terraform Pr Workflow

skill-diversioteam-agent-skills-marketplace-terraform-pr-workflow · by DiversioTeam

PR workflow Skill for Terraform/Terragrunt repos: branch naming, PR hygiene, read-only CI gates, and versioning expectations for interface changes.

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-diversioteam-agent-skills-marketplace-terraform-pr-workflow

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-diversioteam-agent-skills-marketplace-terraform-pr-workflow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Terraform Pr Workflow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Terraform PR Workflow Skill

When to Use This Skill

Use this Skill when preparing or reviewing a PR in Terraform/Terragrunt repos, especially shared module libraries and their consumers.

Goal: catch workflow/process issues early (before apply-time surprises).

Severity Tags

  • [BLOCKING] – cannot merge as-is (missing plan rationale, unsafe workflow, breaking change not called out).
  • [SHOULD_FIX] – strongly recommended before merge (docs drift, missing versioning note).
  • [NIT] – minor polish.

Checks This Skill Enforces

1) Branch and PR hygiene

  • Branch name uses a standard prefix (feat/, fix/, chore/, docs/, refactor/).
  • PR title matches intent (don’t hide breaking changes behind “chore” wording).
  • One PR = one coherent change; if it’s a stack of unrelated edits, recommend splitting.

2) PR description quality

PR description must include either:

  • Plan evidence (preferred):
  • module-level validation summary, or
  • terragrunt plan output summary for the relevant stacks, or
  • A clear explanation of why plans weren’t run (missing creds, non-executable change, doc-only PR, etc.) plus what validation was done instead (fmt/validate/lint).

Strongly preferred sections (when applicable):

  • What changed
  • Plan / Validation
  • Risk / Rollout
  • Breaking changes (if any)
  • Versioning (module repos)

3) CI must be read-only

  • CI should run fmt, validate, tflint, and optionally plan.
  • CI should not run apply.
  • If the repo currently has apply in CI, flag as [BLOCKING] and recommend moving applies to a gated/manual workflow.
  • Verify by scanning .github/workflows/*.yml for apply usage (terraform apply, terragrunt apply, run-all apply).

4) Versioning expectations for module libraries

If the PR changes module interface (examples):

  • variables.tf inputs added/renamed/removed
  • outputs.tf outputs added/renamed/removed
  • required provider/terraform versions changed

Then require:

  • Explicit callout in PR description (“Interface change”) with migration notes.
  • A versioning plan aligned with the repo’s conventions (tags/releases/VERSIONING.md when present).
  • “Moving ref” avoidance: consumers should pin to a tag/SHA rather than a branch when the repo supports releases.

5) Breaking changes and changelog/release notes

If changes are breaking (renames/removals, behavior changes, tighter validations):

  • PR must include a Breaking changes section with:
  • what changed,
  • why,
  • how to migrate,
  • what version/tag will contain the change.
  • If the repo maintains a changelog, require an entry.
  • If it doesn’t, require release notes in the PR body.

Output Format

Return:

  • Verdict: MERGE-READY / NOT READY
  • Findings: bullets with [BLOCKING] / [SHOULD_FIX] / [NIT]
  • Suggested edits: concrete fixes to branch name / PR title / PR body sections

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.