From infra-orchestration
End-to-end infrastructure pipeline validation across Terraform and Ansible repos
npx claudepluginhub jacobpevans/claude-code-plugins --plugin infra-orchestrationThis skill uses the workspace's default tool permissions.
Full pipeline validation across every infrastructure repo in dependency order.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Full pipeline validation across every infrastructure repo in dependency order. Validates syntax, plans changes, exports inventory, and dry-runs Ansible playbooks.
cd ~/git/terraform-proxmox/main
doppler run -- terragrunt validate
cd ~/git/terraform-proxmox/main
doppler run -- terragrunt plan
Run /infra-sync-inventory to export Terraform outputs and distribute to Ansible repos.
Run in parallel across all Ansible repos:
doppler run -- ansible-playbook --syntax-check -i inventory/hosts.yml playbooks/site.yml
Target repos: ansible-proxmox, ansible-proxmox-apps, ansible-splunk
Run in parallel across all Ansible repos:
doppler run -- ansible-playbook --check -i inventory/hosts.yml playbooks/site.yml
Run in parallel across all Ansible repos:
doppler run -- ansible-playbook --check --diff -i inventory/hosts.yml playbooks/site.yml
Report per-stage, per-repo pass/fail status:
| Stage | terraform-proxmox | ansible-proxmox | ansible-proxmox-apps | ansible-splunk |
|---|---|---|---|---|
| Validate | PASS/FAIL | - | - | - |
| Plan | PASS/FAIL | - | - | - |
| Syntax Check | - | PASS/FAIL | PASS/FAIL | PASS/FAIL |
| Check Mode | - | PASS/FAIL | PASS/FAIL | PASS/FAIL |
| Diff | - | PASS/FAIL | PASS/FAIL | PASS/FAIL |
Stage failures in Terraform block all subsequent stages. Ansible stage failures are independent per-repo.