sre

Validates CI/CD, Docker, and Terraform configurations before deployment in the SDD pipeline.

Updated Aug 25, 2026
One-click install
npx skills add https://github.com/asengardeon/btt-sdd-pipeline --skill sre-asengardeon
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sre
Source: https://github.com/asengardeon/btt-sdd-pipeline/tree/main/plugins/btt-sdd/skills/sre
Command: npx skills add https://github.com/asengardeon/btt-sdd-pipeline --skill sre-asengardeon

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? This Skill performs the final infrastructure gate of a spec-driven development pipeline, ensuring CI/CD pipelines, Docker setups, and Terraform configurations are reviewed and approved before a feature is merged and deployed. ## Core Features & Use Cases - Infrastructure Review: Invokes the sre agent to produce specs/<slug>/sre-review.md, validating CI, Docker, and Terraform checklists against the TRD, QA report, and security review. - Approval Gating: Presents any real infrastructure change (terraform apply) as a plan requiring explicit user approval before execution. - Pipeline Retrospective: Opens improvement and learning issues in the plugin repository after each approved slice, using timing-log.md data as evidence. - Use Case: After QA and security approve a feature slice, run this Skill to confirm the branch is synced with main, review the deployment infrastructure, trigger automatic documentation updates on the final slice, and clear the feature for merge. ## Quick Start Run the SRE stage for the current feature to validate CI/CD, Docker, and Terraform before merge.

Frequently Asked Questions about sre

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review CI/CD and Terraform before deploying a feature?▼

Run this Skill after QA and security reviews pass. It invokes the sre agent to validate CI/CD, Docker, and Terraform checklists against the TRD and produces an sre-review.md verdict before merge.

What happens when terraform apply is proposed during review?▼

Any real infrastructure change is presented as a plan and executed only after explicit user approval via AskUserQuestion. The orchestrator relays the plan to the user if the agent runs asynchronously without direct question access.

Can I run an infrastructure review without a specific feature?▼

Yes. When asked to audit pipelines or infrastructure outside a feature flow, the Skill points the sre agent at its general checklists without requiring an associated qa-report.md.

What if the feature branch was already merged before SRE review?▼

For retroactive reviews, the Skill creates a new branch from origin/main, produces only the sre-review.md, and opens its own PR without additional gates, following the documented git workflow.

Why must the sre agent run in an isolated worktree?▼

Worktree isolation prevents concurrent agents from sharing a working directory. A real incident occurred where the sre agent misattributed uncommitted files from another active task and moved them into its own PR.