Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/nomarj/sigil/infrastructure-developmentnpx skills add NOMARJ/sigil --skill infrastructure-developmentgit clone --depth 1 https://github.com/NOMARJ/sigilWrote 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/nomarj/sigil/infrastructure-development)<a href="https://agentmods.dev/skills/nomarj/sigil/infrastructure-development"><img src="https://agentmods.dev/badge/skills/nomarj/sigil/infrastructure-development.svg" alt="Measured on agentmods" 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 | $0.00017 | $0.02701 |
| Opus 5 | $0.00009 | $0.01350 |
| Sonnet 5 | $0.00003 | $0.00540 |
| Haiku 4.5 | $0.00002 | $0.00270 |
Grade A, and why
Infrastructure Development scanned grade A with 0 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 yesterday.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 432 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Infrastructure Development Skill
Enterprise-grade infrastructure patterns for secure, scalable AWS deployments
Overview
This skill provides patterns and best practices for infrastructure development in enterprise environments requiring network isolation, security, and compliance. Focus on AWS VPC with PrivateLink, ECS Fargate, and Terraform infrastructure-as-code.
Core Patterns
VPC Network Isolation
# Zero-egress VPC pattern
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
tags = {
Name = "${var.project_name}-vpc"
Environment = var.environment
}
}
# No internet gateway - PrivateLink only
# Private subnets in multiple AZs
resource "aws_subnet" "private" {
count = length(var.availability_zones)
vpc_id = aws_vpc.main.id
cidr_block = "10.0.${count.index + 1}.0/24"
availability_zone = var.availability_zones[count.index]
tags = {
Name = "${var.project_name}-private-${count.index + 1}"
Type = "Private"
}
}
PrivateLink Endpoints Pattern
# Essential VPC endpoints for air-gapped deployment
locals {
vpc_endpoints = {
s3 = {
service_name = "com.amazonaws.${var.region}.s3"
type = "Gateway"
}
bedrock = {
service_name = "com.amazonaws.${var.region}.bedrock-runtime"
type = "Interface"
}
secrets_manager = {
service_name = "com.amazonaws.${var.region}.secretsmanager"
type = "Interface"
}
ecr = {
service_name = "com.amazonaws.${var.region}.ecr.dkr"
type = "Interface"
}
opensearch = {
service_name = "com.amazonaws.${var.region}.opensearch-serverless"
type = "Interface"
}
}
}
resource "aws_vpc_endpoint" "endpoints" {
for_each = local.vpc_endpoints
vpc_id = aws_vpc.main.id
service_name = each.value.service_name
vpc_endpoint_type = each.value.type
subnet_ids = each.value.type == "Interface" ? aws_subnet.private[*].id : null
security_group_ids = each.value.type == "Interface" ? [aws_security_group.vpc_endpoints.id] : null
tags = {
Name = "${var.project_name}-${each.key}-endpoint"
}
}
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.
- yesterday First seen · 432 lines · 17 tokens per session scan A fa4ce8c3d36d
Infrastructure Development is a skill published in the GitHub repository NOMARJ/sigil (5 stars, last pushed today), licensed Apache-2.0. It adds 17 tokens to every session and 2,701 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
together-kueue
Install and use the Kueue job-queueing controller on a Together AI Kubernetes GPU cluster to gate jobs on quota. Covers installing Kueue, defining ResourceFlavor, ClusterQueue, and LocalQueue quota, submitting jobs to a queue, and watching quota admit or suspend them. Reach for it when a Together cluster's GPU pool…
live-demo
Add safe hosted-session runtime to a working robium app: per-visitor instances, a capability-protected gateway, start/status/stop lifecycle, boot logs, fleet budgets, Cloud Run or RunPod drivers, and a Gradio, Lichtblick, or Foxglove viewer handoff. Use when: 'live demo', 'start a private demo instance', 'demo…
mk8s-byok
Runs workloads on your own hardware and provisions managed Kubernetes (mk8s) clusters on Control Plane. Use when the user asks about bare metal, on-prem, data centers, their own servers, mk8s, BYOK, or node pools.
sandy-cli
Run TypeScript scripts in sandboxed microVMs or Docker containers with AWS SDK access via IMDS, through the sandy CLI. Use when investigating AWS resources, running read-only queries, or executing TypeScript automation that needs AWS credentials via shell commands.
graviton-migration
Execute a workload migration from x86 (amd64) to AWS Graviton (arm64) — set up the Arm migration MCP server for code, dependency, and container arm64-readiness scanning, then run the migration — pre-migration scanning, Karpenter arm64 node cutover, and multi-arch CI pipelines. Use when someone says "migrate to…
proxmox-engineer
Proxmox VE e PBS — cluster, quorum, Ceph, LXC, VM, HA, replicação, storage e backup. Use quando o usuário disser "proxmox", "PVE", "ceph", "LXC", "container LXC", "VM não sobe", "cluster sem quorum", "PBS", "backup da VM". Sem MCP nem CLI padrão instalada — opera via SSH no nó ou API REST.