Borrowing it
Nothing to install: this file belongs to pyramidheadshark/claude-scaffold. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/pyramidheadshark/claude-scaffold/main/.claude/skills/infra-yandex-cloud/SKILL.mdgit clone --depth 1 https://github.com/pyramidheadshark/claude-scaffoldWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/pyramidheadshark/claude-scaffold/infra-yandex-cloud)<a href="https://agentmods.dev/skills/pyramidheadshark/claude-scaffold/infra-yandex-cloud"><img src="https://agentmods.dev/badge/skills/pyramidheadshark/claude-scaffold/infra-yandex-cloud/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/pyramidheadshark/claude-scaffold/infra-yandex-cloud"><img src="https://agentmods.dev/badge/skills/pyramidheadshark/claude-scaffold/infra-yandex-cloud.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01577 |
| Opus 5 | $0.00000 | $0.00788 |
| Sonnet 5 | $0.00000 | $0.00315 |
| Haiku 4.5 | $0.00000 | $0.00158 |
Grade D, and why
infra-yandex-cloud scanned grade D with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
"sudo apt-get update -q", Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
"curl -LsSf https://astral.sh/uv/install.sh | sh", Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
"sudo apt-get install -y -q docker.io docker-compose-plugin curl git", How it starts
The opening of the file, as written. The whole thing — 248 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Infra: Yandex Cloud
When to Load This Skill
Load when working with: Terraform, Packer, Yandex Cloud resources, Docker deployment to VMs, Kubernetes prep, CI/CD deploy steps, VM configuration.
Stack
- Packer — builds VM images (pre-baked with Docker, dependencies)
- Terraform — provisions YC infrastructure (VMs, networking, Object Storage)
- Docker Compose — runs application on provisioned VM
- Helm — Kubernetes-ready charts prepared from day one (even if K8s not yet used)
Repository Structure
infra/
├── packer/
│ ├── ubuntu-base.pkr.hcl # base image with Docker + system deps
│ └── variables.pkr.hcl
├── terraform/
│ ├── main.tf
│ ├── variables.tf
│ ├── outputs.tf
│ ├── versions.tf
│ └── modules/
│ ├── vm/ # reusable VM module
│ │ ├── main.tf
│ │ ├── variables.tf
│ │ └── outputs.tf
│ └── networking/
│ ├── main.tf
│ ├── variables.tf
│ └── outputs.tf
└── helm/ # K8s-ready, deploy when needed
└── {project-name}/
├── Chart.yaml
├── values.yaml
└── templates/
├── deployment.yaml
├── service.yaml
└── configmap.yaml
Terraform: versions.tf Standard
terraform {
required_version = ">= 1.6.0"
required_providers {
yandex = {
source = "yandex-cloud/yandex"
version = "~> 0.115"
}
}
backend "s3" {
endpoints = {
s3 = "https://storage.yandexcloud.net"
}
bucket = "tf-state-bucket"
region = "ru-central1"
key = "{project-name}/terraform.tfstate"
skip_region_validation = true
skip_credentials_validation = true
skip_requesting_account_id = true
skip_s3_checksum = true
}
}
provider "yandex" {
token = var.yc_token
cloud_id = var.yc_cloud_id
folder_id = var.yc_folder_id
zone = var.yc_zone
}
Terraform: VM Module (CPU)
resource "yandex_compute_instance" "app" {
name = "${var.project_name}-${var.environment}"
platform_id = "standard-v3"
zone = var.zone
resources {
cores = var.cpu_cores
memory = var.memory_gb
core_fraction = 100
}
boot_disk {
initialize_params {
image_id = var.image_id
size = var.disk_gb
type = "network-ssd"
}
}
network_interface {
subnet_id = var.subnet_id
nat = true
}
metadata = {
ssh-keys = "ubuntu:${file(var.ssh_public_key_path)}"
user-data = templatefile("${path.module}/cloud-init.yaml", {
docker_compose_content = base64encode(file(var.docker_compose_path))
env_content = base64encode(file(var.env_file_path))
})
}
}
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 248 lines · 0 tokens per session scan D 51303680fa06
infra-yandex-cloud is a skill published in the GitHub repository pyramidheadshark/claude-scaffold (4 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,577 tokens. A static security scan graded it D with 3 findings (asks for root, downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
dnanexus-integration
DNAnexus cloud genomics platform. Build apps/applets, manage data (upload/download), dxpy Python SDK, run workflows, FASTQ/BAM/VCF, for genomics pipeline development and execution.
latchbio-integration
Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.
lambda-gpu-cloud
Safely inspect and operate Lambda Cloud GPU instances through the documented Cloud API and SSH, with explicit approval before billable or destructive actions.
runpod-gpu-cloud
Safely inspect and operate RunPod resources with runpodctl, live product data, and explicit approval before paid or destructive actions.
vast-ai-gpu-cloud
Safely inspect and operate Vast.ai marketplace instances with the vastai CLI, live offer data, and explicit approval before paid or destructive actions.
implementing-infrastructure-as-code-security-scanning
This skill covers implementing automated security scanning for Infrastructure as Code (IaC) templates using tools like Checkov, tfsec, and KICS. It addresses detecting misconfigurations in Terraform, CloudFormation, Kubernetes manifests, and Helm charts before deployment, establishing policy-based governance, and…