A portable collection of DevOps/SRE/Platform Engineering skills for AI assistants.
This repository contains DevOps skills that work with:
- aof.sh - Agentic Ops Framework
- clawdbot - AI assistant with multi-channel support
- Claude Code - Via CLAUDE.md adapter
Skills teach AI assistants how to effectively use DevOps tools like kubectl, docker, aws, git, terraform, and more.
Full installation guide: docs/installation.md
# Clone to skills directory
git clone https://github.com/agenticdevops/agentic-ops-skills.git \
~/.aof/skills/agentic-ops
# Verify skills are loaded
aofctl skills list --eligible# Clone to clawdbot skills directory
git clone https://github.com/agenticdevops/agentic-ops-skills.git \
~/.clawdbot/skills/agentic-ops
# Skills are automatically loaded on next clawdbot session# Copy the adapter to your Claude config
cp claude-code/CLAUDE.md ~/.claude/| Skill | Description | Required Tools |
|---|---|---|
| k8s-debug | Kubernetes debugging and troubleshooting | kubectl |
| k8s-deploy | Safe deployment practices and rollbacks | kubectl |
| incident-response | Structured incident response workflows | kubectl, docker |
| docker-ops | Docker operations and debugging | docker |
| system-health | System health checks (CPU, memory, disk) | top/htop/ps |
| aws-ops | AWS operations and queries | aws |
| terraform-workflow | Infrastructure as Code practices | terraform |
| log-analysis | Cross-platform log analysis | grep, awk, jq |
| git-workflow | DevOps git practices | git, gh |
| argocd-gitops | GitOps with ArgoCD | argocd |
| cost-optimization | Cloud cost management | aws, kubectl |
Each skill is a SKILL.md file with YAML frontmatter:
---
name: skill-name
description: Brief description
metadata:
emoji: "🔍"
requires:
bins: ["kubectl"]
tags:
- kubernetes
---
# Skill Content
Instructions and commands here...See docs/contributing.md for guidelines on adding new skills.
MIT License - see LICENSE