devops
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: .env.example Description: # DevOps Skill - Environment Variables # ============================================================================= # Cloudflare Configuration # ============================================================================= # Get these from: https://dash.cloudflare.com # API Token: Profile -> API Tokens -> Create Token # Account ID: Overview -> Account ID (right sidebar) CLOUDFLARE_API_TOKEN=your_cloudflare_api_token_here CLOUDFLARE_ACCOUNT_ID=your_cloudflare_ac
Malicious tool definition detected
Tool: SKILL.md Description: --- name: devops description: Deploy to Cloudflare (Workers, R2, D1), Docker, GCP (Cloud Run, GKE), Kubernetes (kubectl, Helm).
Malicious tool definition detected
Tool: references/browser-rendering.md Description: # Cloudflare Browser Rendering Headless browser automation with Puppeteer/Playwright on Cloudflare Workers.
Malicious tool definition detected
Tool: references/cloudflare-d1-kv.md Description: # Cloudflare D1 & KV ## D1 (SQLite Database) ### Setup ```bash # Create database wrangler d1 create my-database # Add to wrangler.toml [[d1_databases]] binding = "DB" database_name = "my-database" database_id = "YOUR_DATABASE_ID" # Apply schema wrangler d1 execute my-database --file=./schema.sql ``` ### Usage ```typescript // Query const result = await env.DB.prepare( "SELECT * FROM users WHERE id = ?" ).bind(userId).first(); // Insert await env.
Malicious tool definition detected
Tool: references/cloudflare-platform.md Description: # Cloudflare Platform Overview Cloudflare Developer Platform: comprehensive edge computing ecosystem for full-stack applications on global network across 300+ cities.
Malicious tool definition detected
Tool: references/cloudflare-r2-storage.md Description: # Cloudflare R2 Storage S3-compatible object storage with zero egress fees.
Malicious tool definition detected
Tool: references/cloudflare-workers-advanced.md Description: # Cloudflare Workers Advanced Patterns Advanced techniques for optimization, performance, and complex workflows.
Malicious tool definition detected
Tool: references/cloudflare-workers-apis.md Description: # Cloudflare Workers Runtime APIs Key runtime APIs for Workers development.
Malicious tool definition detected
Tool: references/cloudflare-workers-basics.md [1/2] Description: # Cloudflare Workers Basics Getting started with Cloudflare Workers: serverless functions that run on edge network across 300+ cities.
Tool: references/cloudflare-workers-basics.md [2/2]
Malicious tool definition detected
Tool: references/docker-basics.md Description: # Docker Basics Core concepts and workflows for Docker containerization. ## Core Concepts **Containers:** Lightweight, isolated processes bundling apps with dependencies.
Malicious tool definition detected
Tool: references/docker-compose.md Description: # Docker Compose Multi-container application orchestration.
Malicious tool definition detected
Tool: references/gcloud-platform.md Description: # Google Cloud Platform with gcloud CLI Comprehensive guide for gcloud CLI - command-line interface for Google Cloud Platform.
Malicious tool definition detected
Tool: references/gcloud-services.md Description: # Google Cloud Services ## Compute Engine (VMs) ```bash # List instances gcloud compute instances list # Create instance gcloud compute instances create my-instance \ --zone=us-central1-a \ --machine-type=e2-medium \ --image-family=debian-11 \ --image-project=debian-cloud \ --boot-disk-size=10GB # SSH into instance gcloud compute ssh my-instance --zone=us-central1-a # Copy files gcloud compute scp local-file.txt my-instance:~/remote-file.txt \ --z
Malicious tool definition detected
Tool: references/kubernetes-basics.md Description: # Kubernetes Core Concepts ## Cluster Architecture ``` CONTROL PLANE WORKER NODES ├── API Server (kubectl) ├── Kubelet (node agent) ├── Scheduler (pod placement) ├── Kube-proxy (networking) ├── Controller Manager └── Container Runtime └── etcd (cluster state) ``` ## Pod ```yaml apiVersion: v1 kind: Pod metadata: name: myapp-pod spec: containers: - name: myapp image: myapp:1.0 ports: - containerPort: 8080 r
Malicious tool definition detected
Tool: references/kubernetes-helm-advanced.md Description: # Helm Advanced - Templates & Hooks ## Template Variables ```yaml # templates/deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "mychart.fullname" .
Malicious tool definition detected
Tool: references/kubernetes-helm.md Description: # Helm Package Management ## Core Concepts - **Chart:** Helm package with K8s resource definitions - **Repository:** Collection of charts - **Release:** Deployed instance of a chart - **Values:** Configuration that parameterizes charts ## Chart Structure ``` mychart/ ├── Chart.yaml # Metadata ├── values.yaml # Default values ├── charts/ # Dependencies ├── templates/ │ ├── deployment.yaml │ ├── service.y
Malicious tool definition detected
Tool: references/kubernetes-kubectl.md Description: # kubectl Essential Commands ## Cluster & Node ```bash kubectl cluster-info kubectl get nodes kubectl describe node <node-name> kubectl top nodes kubectl drain <node-name> --ignore-daemonsets kubectl uncordon <node-name> ``` ## Pod Operations ```bash kubectl get pods -A # All namespaces kubectl get pods -o wide # Extended info kubectl describe pod <pod-name> kubectl logs <pod-name> kubectl logs -f <pod-name>
Malicious tool definition detected
Tool: references/kubernetes-security-advanced.md Description: # Kubernetes Security Advanced ## ClusterRole (cluster-wide) ```yaml apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: secret-reader rules: - apiGroups: [""] resources: ["secrets"] verbs: ["get"] resourceNames: ["app-credentials"] # Restrict to specific --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: admin-binding subjects: - kind: User name: admin@example.com apiGroup: r
Malicious tool definition detected
Tool: references/kubernetes-security.md Description: # Kubernetes Security ## RBAC (Role-Based Access Control) ### Role (namespace-scoped) ```yaml apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: namespace: default name: pod-reader rules: - apiGroups: [""] resources: ["pods", "pods/log"] verbs: ["get", "list", "watch"] ``` ### RoleBinding ```yaml apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: read-pods namespace: default subjects: - kind: ServiceAccount n
Malicious tool definition detected
Tool: references/kubernetes-troubleshooting-advanced.md Description: # Kubernetes Troubleshooting Advanced ## Node Issues ```bash kubectl describe node <node-name> | grep -A 5 "Conditions:" kubectl top node <node-name> kubectl top pods -A --sort-by=memory kubectl drain <node-name> --ignore-daemonsets kubectl uncordon <node-name> ``` ## CrashLoopBackOff ```bash kubectl logs <pod-name> --previous kubectl describe pod <pod-name> kubectl get pod <pod-name> -o yaml | grep -A 5 resources: ``` ## HPA `
Malicious tool definition detected
Tool: references/kubernetes-troubleshooting.md Description: # Kubernetes Troubleshooting ## Debugging Workflow ```bash # 1.
Malicious tool definition detected
Tool: references/kubernetes-workflows-advanced.md Description: # Kubernetes Workflows Advanced ## CI/CD Pipeline ```yaml # GitHub Actions name: Build and Deploy on: push: branches: [main] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - run: docker build .
Malicious tool definition detected
Tool: references/kubernetes-workflows.md Description: # Kubernetes Workflows ## GitOps Architecture ``` Git Repository (desired state) │ Watches ▼ GitOps Agent (Argo CD / Flux) │ Syncs ▼ Kubernetes Cluster (actual state) ``` **Benefits:** Single source of truth, auditable, automated, easy rollback ## Argo CD Setup ```bash kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml kubectl port-forward svc/argocd-serv
Malicious tool definition detected
Tool: scripts/cloudflare_deploy.py Description: #!/usr/bin/env python3 """ Cloudflare Worker Deployment Utility Automates Cloudflare Worker deployments with wrangler.toml configuration handling, multi-environment support, and comprehensive error handling.
Malicious tool definition detected
Tool: scripts/docker_optimize.py Description: #!/usr/bin/env python3 """ Dockerfile Optimization Analyzer Analyzes Dockerfiles for optimization opportunities including multi-stage builds, security issues, size reduction, and best practices.
Malicious tool definition detected
Tool: scripts/requirements.txt Description: # DevOps Skill Dependencies # Python 3.10+ required # No Python package dependencies - uses only standard library # Testing dependencies (dev) pytest>=8.0.0 pytest-cov>=4.1.0 pytest-mock>=3.12.0 # Note: This skill requires various CLI tools depending on platform:
Malicious tool definition detected
Tool: scripts/tests/requirements.txt Description: pytest>=7.0.0
Malicious tool definition detected
Tool: scripts/tests/test_cloudflare_deploy.py Description: """ Tests for cloudflare-deploy.py Run with: pytest test_cloudflare_deploy.py -v """ import pytest import subprocess from pathlib import Path from unittest.mock import Mock, patch, mock_open import sys import os # Add parent directory to path for imports sys.path.insert(0, str(Path(__file__).parent.parent)) from cloudflare_deploy import CloudflareDeploy, CloudflareDeployError @pytest.fixture def temp_project(tmp_path): """Create temporar
Malicious tool definition detected
Tool: scripts/tests/test_docker_optimize.py [1/2] Description: """ Tests for docker-optimize.py Run with: pytest test_docker_optimize.py -v """ import pytest import json from pathlib import Path import sys # Add parent directory to path for imports sys.path.insert(0, str(Path(__file__).parent.parent)) from docker_optimize import DockerfileAnalyzer @pytest.fixture def temp_dockerfile(tmp_path): """Create temporary Dockerfile""" dockerfile = tmp_path / "Dockerfile" return dockerfile def write_dock
Tool: scripts/tests/test_docker_optimize.py [2/2]