Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

infrastructure-coder基础设施编码员

Agent Skill

infrastructure-coder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

315

周安装

13

GitHub Stars

2

下载量

103
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:infrastructure-coder(基础设施编码员)
来源仓库:https://github.com/wyattowalsh/agents
仓库路径:skills/infrastructure-coder
安装命令:
npx skills add https://github.com/wyattowalsh/agents --skill infrastructure-coder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wyattowalsh/agents --skill infrastructure-coder

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词或任务场景从来源线索中获取信息,支持多种宿主环境集成。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • infrastructure-coder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Infrastructure Coder

Generate, review, and analyze Infrastructure-as-Code. Terraform/OpenTofu modules, Kubernetes manifests, Dockerfiles.

Scope: IaC generation and analysis only. NOT for CI/CD pipelines (devops-engineer), application code, cloud console operations, or actual cost calculation.

Canonical Vocabulary

TermDefinition
moduleA self-contained Terraform/OpenTofu unit with variables, resources, and outputs
manifestA Kubernetes YAML resource definition
chartA Helm package containing templated K8s manifests
stageA Docker build stage in a multi-stage Dockerfile
resourceA cloud infrastructure primitive (instance, bucket, network, etc.)
misconfigurationA security or reliability issue in IaC (open ports, missing encryption, no limits)
cost-relativeComparison between resource types/tiers, NOT absolute dollar pricing
hardeningApplying security best practices to reduce attack surface
driftDifference between declared IaC state and actual infrastructure
blast radiusHow many dependent resources would be affected by a change

Dispatch

$ARGUMENTSMode
terraform <requirements>Generate Terraform/OpenTofu modules
kubernetes <requirements> / k8s <requirements>Generate K8s manifests and Helm charts
docker <requirements>Optimize Dockerfiles (multi-stage, caching, security)
review <file-or-path>Audit IaC for correctness and best practices
cost <config-or-path>Cost-relative estimation (compare resource types)
security <config-or-path>Security scan for IaC misconfigurations
EmptyShow mode menu with examples

Mode: Terraform

Generate production-ready Terraform/OpenTofu modules.

Terraform Steps

  1. Parse requirements — identify resources, provider, region, dependencies
  2. Run uv run python skills/infrastructure-coder/scripts/terraform-module-scanner.py <path> on any existing .tf files to understand current state
  3. Generate module structure:

- main.tf — resource definitions - variables.tf — input variables with descriptions, types, defaults, validation - outputs.tf — useful outputs for downstream consumption - versions.tf — required providers and version constraints

  1. Apply patterns from references/terraform-patterns.md

Generation Rules

  • Always pin provider versions with ~> constraints
  • Use for_each over count for named resources
  • Tag all resources with Name, Environment, ManagedBy = "terraform"
  • Use data sources for existing infrastructure, never hardcode ARNs/IDs
  • Separate state per environment using workspaces or backend config
  • Reference references/cloud-equivalents.md for multi-cloud alternatives

Mode: Kubernetes

Generate Kubernetes manifests or Helm charts.

Manifest Steps

  1. Parse requirements — identify workload type, scaling, networking, storage
  2. Run uv run python skills/infrastructure-coder/scripts/k8s-manifest-validator.py <path> on existing manifests
  3. Generate manifests with best practices:

- Resource limits and requests on every container - Health checks (liveness, readiness, startup probes) - Security context (non-root, read-only root filesystem, drop capabilities) - Pod disruption budgets for HA workloads - NetworkPolicies for pod-to-pod communication

Helm Charts

  1. For Helm charts: parameterize environment-specific values, use values.yaml defaults
  2. Apply patterns from references/kubernetes-patterns.md

Mode: Docker

Optimize Dockerfiles for size, build speed, and security.

  1. Run uv run python skills/infrastructure-coder/scripts/dockerfile-analyzer.py <path> on existing Dockerfile
  2. Parse JSON output for issues and optimization opportunities
  3. Apply optimizations:

- Multi-stage builds separating build and runtime - Order layers by change frequency (dependencies before source) - Use specific base image tags (never latest) - Distroless or Alpine for runtime images - Non-root USER directive - COPY specific files, avoid COPY.. - Combine RUN commands to reduce layers - Use.dockerignore

  1. Reference references/dockerfile-guide.md for detailed patterns

Mode: Review

Audit IaC files for correctness, best practices, and reliability.

Analysis Pipeline

  1. Identify file type (Terraform, K8s manifest, Dockerfile, Helm chart)
  2. Run the appropriate analysis script:

- .tf files: terraform-module-scanner.py - K8s YAML: k8s-manifest-validator.py - Dockerfile: dockerfile-analyzer.py

  1. Multi-pass analysis (adapted from honest-review pipeline):

- Pass 1 — Correctness: syntax, valid references, API version compatibility - Pass 2 — Best practices: patterns from reference files, anti-patterns - Pass 3 — Reliability: failure modes, blast radius, recovery paths

Findings Report

  1. Present findings grouped by severity (Critical / Warning / Info)
  2. For each finding: file location, issue description, recommended fix
  3. Reference references/security-hardening.md for security-specific checks

Mode: Cost

Cost-relative comparison between resource configurations. NOT absolute pricing.

  1. Identify resources in the configuration
  2. Reference references/cloud-equivalents.md for cross-cloud mapping
  3. Compare configurations on relative axes:

- Instance families: compute-optimized vs memory-optimized vs general-purpose - Storage tiers: standard vs infrequent-access vs archive - Network: inter-region vs intra-region vs same-AZ - Managed vs self-hosted trade-offs

  1. Present as relative comparison table (e.g., "~2x cost of...", "comparable to...")
  2. Reference references/cost-comparison.md for tier mappings

Output relative comparisons only. Never state dollar amounts — pricing changes constantly and varies by contract.

Mode: Security

Scan IaC for security misconfigurations.

  1. Run the appropriate analysis script for file type
  2. Check against references/security-hardening.md checklist:

- Network: open security groups, public subnets, missing NACLs - Encryption: unencrypted storage, missing TLS, plaintext secrets - Access: overly permissive IAM, missing MFA, wildcard policies - Containers: privileged mode, root user, host networking, latest tags - Secrets: hardcoded credentials, API keys in config, missing vault integration

  1. Classify findings by severity:

- Critical: exploitable without authentication, data exposure - High: requires some access but significant impact - Medium: defense-in-depth violation, potential escalation path - Low: informational, hardening recommendation

  1. Present findings with CIS/cloud-specific benchmark references where applicable

Dashboard

After any review, cost, or security scan, render an IaC overview dashboard.

  1. Collect all findings and resource inventory
  2. Inject as JSON into templates/dashboard.html: {"view": "iac-overview", "resources": [...], "findings": [...], "dockerfile_layers": [...], "cost_comparison": [...]}
  3. Copy template to a temporary file, inject data, open in browser

Reference Files

Load ONE reference at a time. Do not preload all references.

FileContentRead When
references/terraform-patterns.mdModule patterns, state management, provider configTerraform mode
references/kubernetes-patterns.mdResource patterns, Helm conventions, scalingKubernetes mode
references/dockerfile-guide.mdMulti-stage builds, layer optimization, distrolessDocker mode
references/cloud-equivalents.mdAWS/GCP/Azure resource mappingCost mode, multi-cloud generation
references/security-hardening.mdIaC security checklist by categorySecurity mode, Review mode
references/cost-comparison.mdRelative cost tiers and trade-offsCost mode
ScriptWhen to Run
scripts/dockerfile-analyzer.pyDocker mode, Review mode (Dockerfiles)
scripts/terraform-module-scanner.pyTerraform mode, Review mode (.tf files)
scripts/k8s-manifest-validator.pyKubernetes mode, Review mode (K8s YAML)
TemplateWhen to Render
templates/dashboard.htmlAfter review, cost, or security scan

Critical Rules

  1. Never state absolute dollar pricing — use relative comparisons only ("~2x", "comparable to")
  2. Always pin versions — provider versions, base image tags, chart versions. Never latest
  3. Never generate IaC with hardcoded secrets — use variables, vault references, or secret managers
  4. Always include resource limits in K8s manifests — CPU, memory requests and limits
  5. Always run the appropriate analysis script before review/security mode output
  6. Never skip security context in K8s — non-root, read-only root FS, dropped capabilities
  7. Tag all cloud resources — Name, Environment, ManagedBy at minimum
  8. Use for_each over count in Terraform for named resources
  9. Never generate overly permissive IAM policies — principle of least privilege
  10. Always include health checks in K8s manifests — liveness, readiness probes
  11. Present review findings grouped by severity — Critical before Info
  12. Load ONE reference file at a time — do not preload all references into context
  13. Refuse CI/CD pipeline requests — redirect to devops-engineer skill
  14. Refuse application code requests — this skill is IaC only
  15. Refuse absolute cost estimation requests — explain why relative comparison is provided instead

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.5%
按下载量换算39

Claude

30.83%
按下载量换算32

Cursor

19.36%
按下载量换算20

Gemini CLI

9.5%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills