senior-devops

Generates CI/CD pipelines, Terraform scaffolding, and deployment configurations for cloud infrastructure.

1|Updated May 10, 2026
One-click install
npx skills add https://github.com/Tgoldi/claude-skills --skill senior-devops-tgoldi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: senior-devops
Source: https://github.com/Tgoldi/claude-skills/tree/main/senior-devops
Command: npx skills add https://github.com/Tgoldi/claude-skills --skill senior-devops-tgoldi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Setting up CI/CD pipelines, infrastructure as code, and deployment workflows from scratch is repetitive and error-prone. This Skill provides scaffolding scripts and reference guides to standardize DevOps work across AWS, GCP, and Azure environments. ## Core Features & Use Cases - Pipeline Generator: Scaffolds CI/CD pipeline configurations for platforms like GitHub Actions and CircleCI. - Terraform Scaffolder: Generates infrastructure as code templates following documented best practices. - Deployment Manager: Assists with deployment automation and analysis of target project paths. - Use Case: When starting a new microservice, run the pipeline generator and Terraform scaffolder against the project directory, then consult the reference guides for deployment strategies and infrastructure patterns. ## Quick Start Ask the assistant to set up a CI/CD pipeline and Terraform infrastructure for your project using the senior-devops skill.

Frequently Asked Questions about senior-devops

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

FAQPage Schema
How do I generate a CI/CD pipeline for my project?

Run the pipeline generator script with your project path: python scripts/pipeline_generator.py <project-path>. The script validates the target directory, performs analysis, and outputs a report, with optional --json and --verbose flags.

How to scaffold Terraform infrastructure as code?

Use the terraform scaffolder script by running python scripts/terraform_scaffolder.py <target-path>. It validates the path, analyzes the target, and generates a report. The infrastructure_as_code.md reference provides patterns and best practices.

Does this skill support AWS, GCP, and Azure deployments?

Yes, the skill covers all three major cloud platforms along with Docker, Kubernetes, Terraform, GitHub Actions, and CircleCI. The reference guides document deployment strategies and infrastructure patterns applicable across these platforms.

What are the limitations of the scaffolding scripts?

The scripts currently perform target validation and analysis with placeholder findings rather than emitting full configuration files. They require an existing target path and Python 3, and the detailed implementation logic must be extended for production output.

Why does the script fail with a target path error?

The scripts raise an error when the provided target path does not exist on the filesystem. Verify the path is correct and accessible before running, and use the --verbose flag to see validation steps.