
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
devops-ai-skill
Advanced tools
Cross-platform DevOps AI Skill Pack — Horus (IaC) + Zeus (GitOps) agents for Claude Code, OpenAI Codex CLI, Google Gemini CLI, and Google Antigravity
Cross-platform DevOps AI Skill Pack — two AI-powered DevOps agents and shared pipeline workflows for Claude Code, OpenAI Codex CLI, Google Gemini CLI, and Google Antigravity.
🚀 Quick Start · 🤖 Agents · 🔧 Tool Installation · 🛠️ Skills · 📖 Setup Guide · ⚡ 5-Min Guide · 🌐 GitHub Repo
| Agent | Focus | Platforms |
|---|---|---|
| Horus — IaC Operations Engineer | Terraform + Helm + GKE | All |
| Zeus — GitOps Engineer | Kustomize + ArgoCD | All |
Install once, available across ALL projects:
git clone https://github.com/qwedsazxc78/devops-ai-skill.git
cd devops-ai-skill
bash scripts/install-global.sh # Auto-detect installed CLIs
Auto-detects Claude Code / Codex CLI / Gemini CLI / Antigravity and installs to their global config paths.

🆕 New here? Check out the 5-minute quick start guide — zero prior knowledge required!
bash scripts/install-global.sh --all # Force all platforms
bash scripts/install-global.sh --claude # Claude Code only
bash scripts/install-global.sh --codex # Codex CLI only
bash scripts/install-global.sh --gemini # Gemini CLI only
bash scripts/install-global.sh --antigravity # Antigravity only
bash scripts/install-global.sh --status # Check install status
bash scripts/install-global.sh --uninstall # Remove global installs
cd devops-ai-skill
git pull origin main # Pull latest
bash scripts/install-global.sh # Re-run (skips unchanged files)
Re-run
install-global.shafter updating source files to sync changes to all platforms.
Run from your project root:
git clone https://github.com/qwedsazxc78/devops-ai-skill.git
bash devops-ai-skill/scripts/setup.sh --all # Install all platforms
bash devops-ai-skill/scripts/setup.sh # Or interactive selection
bash devops-ai-skill/scripts/setup.sh --claude
bash devops-ai-skill/scripts/setup.sh --codex
bash devops-ai-skill/scripts/setup.sh --gemini
bash devops-ai-skill/scripts/setup.sh --antigravity
bash devops-ai-skill/scripts/setup.sh --uninstall
/plugin marketplace add qwedsazxc78/devops-ai-skill
/plugin install devops@devops-ai-skill
# Auto-detects installed AI agents and routes skills accordingly
npx skills add qwedsazxc78/devops-ai-skill
# Update
npx skills update
⚠️ Note: This method installs only the 9 Skills (SKILL.md), not the full pack:
Feature npx skills Global Install 9 Skills (SKILL.md) ✅ ✅ 2 Agents (Horus / Zeus) ❌ ✅ 14 Pipelines ( *full,*security, etc.)❌ ✅ Command palette (Gemini CLI) ❌ ✅ Workflows (Antigravity) ❌ ✅ For the full experience, use Global Install or Marketplace above.
| Feature | Claude Code | OpenAI Codex | Gemini CLI | Antigravity |
|---|---|---|---|---|
| Global Agents | ~/.claude/agents/ | ~/.codex/instructions.md | ~/.gemini/agents/ | ~/.agents/skills/ |
| Global Skills | ~/.claude/skills/ | ~/.codex/skills/ | ~/.gemini/skills/ | shared ~/.gemini/skills/ |
| Command palette | — | — | ~/.gemini/commands/devops/ | — |
| Workflows | — | — | — | ~/.agents/workflows/ |
| Entry file | CLAUDE.md | AGENTS.md | GEMINI.md | .agents/rules/ |
| Skills format | SKILL.md (native) | SKILL.md (native) | SKILL.md (native) | SKILL.md (native) |
| Pipeline trigger | *cmd | *cmd | command palette devops: | /workflow-name |
| Bash execution | Yes | Yes (!cmd) | Yes (run_shell_command) | Yes |
One-command installer supporting macOS (Homebrew), Linux (apt/snap), Windows (winget/choco/scoop), and Python (uv/pip):
# Interactive: check + prompt install
./scripts/install-tools.sh
# Check tool status only
./scripts/install-tools.sh check
# Install all missing tools
./scripts/install-tools.sh install
# Install tools for a specific agent
./scripts/install-tools.sh install horus # IaC tools
./scripts/install-tools.sh install zeus # GitOps tools
Windows users: Run via Git Bash, WSL, or MSYS2. The script auto-detects your package manager (winget / Chocolatey / Scoop):
# Git Bash (recommended) bash scripts/install-tools.sh # WSL wsl bash scripts/install-tools.sh
| Tool | Tier | macOS (brew) | Linux (apt/snap) | Windows (winget) | Purpose |
|---|---|---|---|---|---|
| node | Required | brew install node | apt-get install nodejs | winget install OpenJS.NodeJS.LTS | postinstall runtime |
| git | Required | brew install git | apt-get install git | winget install Git.Git | Version control |
| kubectl | Required | brew install kubectl | snap install kubectl | winget install Kubernetes.kubectl | K8s CLI |
| jq | Required | brew install jq | apt-get install jq | winget install jqlang.jq | JSON processor |
| yq | Recommended | brew install yq | snap install yq | winget install MikeFarah.yq | YAML processor |
| python3 | Recommended | brew install python3 | apt-get install python3 | winget install Python.Python.3.12 | Version check scripts |
| curl | Recommended | brew install curl | apt-get install curl | winget install cURL.cURL | Remote version check |
| Tool | Tier | macOS (brew) | Windows (winget/choco) | pip | Purpose |
|---|---|---|---|---|---|
| terraform | Required | brew install terraform | winget install Hashicorp.Terraform | — | IaC engine |
| helm | Required | brew install helm | winget install Helm.Helm | — | Helm chart management |
| tflint | Recommended | brew install tflint | choco install tflint | — | Terraform linter |
| tfsec | Recommended | brew install tfsec | choco install tfsec | — | Terraform security scanner |
| pre-commit | Recommended | — | — | pip install pre-commit | Git hook manager |
| Tool | Tier | macOS (brew) | Windows (choco/scoop) | pip | Purpose |
|---|---|---|---|---|---|
| kustomize | Required | brew install kustomize | scoop install kustomize | — | Kustomize build |
| yamllint | Recommended | — | — | pip install yamllint | YAML linter |
| kubeconform | Recommended | brew install kubeconform | scoop install kubeconform | — | K8s resource validation |
| kube-score | Recommended | brew install kube-score | — | — | K8s best practices |
| kube-linter | Recommended | brew install kube-linter | — | — | K8s linter |
| polaris | Recommended | brew install FairwindsOps/tap/polaris | — | — | K8s policy check |
| pluto | Recommended | brew install FairwindsOps/tap/pluto | — | — | Deprecated API detection |
| conftest | Recommended | brew install conftest | — | — | Policy testing |
| checkov | Recommended | — | — | pip install checkov | IaC security scanner |
| trivy | Recommended | brew install trivy | choco install trivy | — | Vulnerability scanner |
| gitleaks | Recommended | brew install gitleaks | choco install gitleaks | — | Secret detection |
| d2 | Recommended | brew install d2 | scoop install d2 | — | Architecture diagrams |
| Pipeline | Description |
|---|---|
*help | Show available pipelines |
*full | Full check (RUNS CLI tools) + report |
*upgrade | Upgrade Helm chart versions |
*security | Security audit (file analysis) |
*validate | Validation (fmt + file analysis) |
*scaffold | Scaffold new Helm module |
*cicd | Improve CI/CD pipeline |
*health | Platform health check |
| Pipeline | Description |
|---|---|
*help | Show available pipelines |
*full | Full pipeline + YAML/MD reports |
*pre-merge | Pre-MR essential checks |
*health | Repository health assessment |
*review | MR review pipeline |
*scaffold | Service scaffold (interactive) |
*diagram | Generate architecture diagrams |
*status | Tool installation check |
All skills follow the Open Agent Skills standard (SKILL.md with YAML frontmatter):
| Skill | Used By | Purpose |
|---|---|---|
| terraform-validate | Horus | Validation and linting |
| terraform-security | Horus | Security scanning |
| helm-version-upgrade | Horus | Helm chart version management |
| helm-scaffold | Horus | New module generation |
| cicd-enhancer | Horus | CI/CD pipeline improvement |
| kustomize-resource-validation | Zeus | Kustomize build + validation |
| yaml-fix-suggestions | Zeus | YAML formatting |
| repo-detect | Both | Repository type detection |
| release-validate | Shared | Release readiness validation |
devops-ai-skill/
├── CLAUDE.md # Claude Code entry
├── AGENTS.md # OpenAI Codex entry
├── GEMINI.md # Gemini CLI entry
├── VERSION # Version source
│
├── .claude/ # Claude Code platform
│ ├── settings.json
│ ├── agents/
│ │ ├── horus.md
│ │ └── zeus.md
│ └── skills/ → symlink to skills/
│
├── .codex/ # OpenAI Codex platform
│ ├── config.toml
│ └── skills/ → symlink to skills/
│
├── .gemini/ # Google Gemini platform
│ ├── settings.json
│ ├── agents/
│ │ ├── horus.md
│ │ └── zeus.md
│ ├── commands/devops/ # Command palette TOML
│ │ ├── agents/ # 2 agent start commands
│ │ └── pipelines/ # 16 pipeline commands
│ └── extensions/devops/
│ └── gemini-extension.json
│
├── .agents/ # Google Antigravity platform
│ ├── rules/devops.md
│ ├── skills/
│ │ ├── horus/SKILL.md
│ │ ├── zeus/SKILL.md
│ │ └── (9 skill symlinks)
│ └── workflows/ # symlinks → prompts/
│
├── skills/ # Shared skills (Open Agent Skills standard)
│ ├── terraform-validate/
│ ├── terraform-security/
│ ├── helm-version-upgrade/
│ ├── helm-scaffold/
│ ├── cicd-enhancer/
│ ├── kustomize-resource-validation/
│ ├── yaml-fix-suggestions/
│ └── repo-detect/
│
├── prompts/ # Platform-neutral pipeline definitions
│ ├── horus/ # 7 pipelines
│ ├── zeus/ # 7 pipelines
│ └── shared/ # repo-detect, report-format, tool-check, help
│
├── docs/
│ ├── quick-start.md # 5-minute quick start
│ ├── setup.md # Detailed setup guide
│ ├── guide/ # Tutorial screenshots
│ ├── reports/ # Generated pipeline reports (*full output)
│ └── diagrams/ # Generated architecture diagrams (*diagram output)
│
├── scripts/
│ ├── setup.sh # Unified install script (recommended)
│ ├── install-tools.sh
│ ├── version-check.sh
│ └── setup/
│ ├── setup-claude.sh # Platform-specific (internal)
│ ├── setup-codex.sh
│ ├── setup-gemini.sh
│ └── setup-antigravity.sh
│
├── .claude-plugin/ # Claude Code marketplace
│ ├── plugin.json
│ └── marketplace.json
│
└── tests/
└── test-structure.sh # 374 structure + parity tests
bash scripts/version-check.sh
# Git
git pull origin main
# Or specific version
git checkout v<version>
# Or npx skills
npx skills update
MIT
FAQs
Cross-platform DevOps AI Skill Pack — Horus (IaC) + Zeus (GitOps) agents for Claude Code, OpenAI Codex CLI, Google Gemini CLI, and Google Antigravity
We found that devops-ai-skill demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.