Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By kjenney
DevOps troubleshooting plugin for AWS resources, EKS services, and Datadog logs and metrics
npx claudepluginhub kjenney/claude-devopsInvestigate AWS resource issues by running automated diagnostics.
Investigate Datadog service health using automated diagnostics.
Investigate Kubernetes/EKS issues by running automated diagnostics.
Investigate AWS resource issues by running run-investigation.sh with the service type, resource name, profile, and region.
Investigate service health in Datadog by running run-investigation.sh with the service name, environment, and time window.
Investigate Kubernetes/EKS issues by running run-investigation.sh with the issue type, resource name, kubectl context, and namespace.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Production reliability and observability across all environments. Master Datadog, CloudWatch, monitoring, incident response, SRE practices, and audit logging for enterprise compliance.
Datadog API CLI with 49 command groups, 300+ subcommands. Skills and domain agents for monitoring, logs, APM, security, and infrastructure.
Editorial "Observability & Monitoring" bundle for Claude Code from Antigravity Awesome Skills.
Collect comprehensive infrastructure performance metrics
Commands for setting up monitoring and observability
🐉 Specialised SRE skills for outage investigations, monitoring graphs, and post-mortems on Google Cloud Platform.
A personal assistant plugin that integrates Gmail and Google Calendar to help coordinate tasks, manage emails, and schedule meetings
A Claude Code plugin for performing DevOps troubleshooting tasks, including:
/devops:aws-investigate — Interactively troubleshoot an AWS resource issue/devops:eks-investigate — Interactively troubleshoot an EKS/Kubernetes service issue/devops:datadog-query — Query Datadog for service logs, metrics, monitors, and APMaws --version~/.aws/configkubectl installed: kubectl versionkubectl config get-contextsexport DD_API_KEY="<your-api-key>"
export DD_APP_KEY="<your-app-key>"
export DD_SITE="datadoghq.com" # or datadoghq.eu for EU
jq installed for JSON parsing: brew install jq (macOS) or apt install jqThe plugin includes a test suite covering all example scripts.
Prerequisites:
brew install shellcheck bats-core
Run all tests:
bash tests/run-tests.sh
Options:
bash tests/run-tests.sh --lint-only # shellcheck static analysis only
bash tests/run-tests.sh --test-only # bats unit tests only (uses mocked aws/kubectl/curl)
The tests use mock binaries in tests/mocks/ that return fixture data, so no real AWS credentials, EKS cluster access, or Datadog API keys are needed to run the tests.
# Test locally
claude --plugin-dir /path/to/devops-plugin
# Or copy to project for project-level use
cp -r /path/to/devops-plugin/.claude-plugin /path/to/your-project/
Trigger the skill automatically by describing an AWS issue:
"Our RDS instance prod-db is showing connection errors" "Lambda function payment-processor is throttling"
Or run the command explicitly:
/devops:aws-investigate
Trigger automatically:
"My pods are OOMKilled in the production namespace" "The checkout service deployment is stuck"
Or run the command:
/devops:eks-investigate
First set credentials:
export DD_API_KEY="..." && export DD_APP_KEY="..."
Trigger automatically:
"Check Datadog for errors on the payment service" "Are any production monitors firing right now?"
Or run the command:
/devops:datadog-query
devops-plugin/
├── .claude-plugin/
│ └── plugin.json
├── skills/
│ ├── aws-troubleshooting/
│ │ ├── SKILL.md
│ │ ├── references/
│ │ │ ├── aws-services.md # EC2, RDS, Lambda, ECS, S3, VPC, ALB, DynamoDB commands
│ │ │ └── iam-debugging.md # IAM policy analysis and access denied debugging
│ │ └── examples/
│ │ ├── investigate-rds.sh
│ │ └── investigate-lambda.sh
│ ├── eks-troubleshooting/
│ │ ├── SKILL.md
│ │ ├── references/
│ │ │ ├── kubernetes-resources.md # kubectl commands for all resource types
│ │ │ └── networking-debug.md # DNS, service, ingress, CNI debugging
│ │ └── examples/
│ │ ├── investigate-deployment.sh
│ │ └── investigate-networking.sh
│ └── datadog-troubleshooting/
│ ├── SKILL.md
│ ├── references/
│ │ ├── datadog-api.md # Full Datadog API call reference
│ │ └── log-query-syntax.md # Log search query syntax and examples
│ └── examples/
│ └── investigate-service.sh
├── commands/
│ ├── aws-investigate.md
│ ├── eks-investigate.md
│ └── datadog-query.md
├── agents/
│ ├── aws-investigator.md
│ ├── eks-investigator.md
│ └── datadog-investigator.md
├── .gitignore
└── README.md