一键导入
terraform-module-creator
Helper for scaffolding new Terraform modules. Complements terraform-module-library by providing structure generation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Helper for scaffolding new Terraform modules. Complements terraform-module-library by providing structure generation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Act as a technical co-founder to turn a product idea into a shippable v1. Use when a user asks to build an app/product, ship an MVP, launch, or wants a technical cofounder style workflow (discovery, scope, plan, staged build, polish, handoff).
Comprehensive backend development skill for building scalable backend systems using Python (FastAPI), Postgres, Redis, and more. Includes API design, database optimization, security implementation, and performance tuning.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). PROACTIVE ACTIVATION when cacheComponents config is detected.
When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' or 'competitive landing pages.' Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. Emphasizes deep research, modular content architecture, and varied section types beyond feature tables.
Refactor high-complexity React components. Use when complexity metrics are high or to split monolithic UI.
Automates the creation of detailed, well-formatted Pull Requests using the GitHub CLI. Parses conventional commits to generate titles and descriptions.
| name | terraform-module-creator |
| description | Helper for scaffolding new Terraform modules. Complements terraform-module-library by providing structure generation. |
This skill assists in scaffolding new Terraform modules following the standards defined in terraform-module-library.
To create a new module, you should create the following directory structure:
mkdir -p modules/<module-name>
touch modules/<module-name>/{main,variables,outputs,versions}.tf
touch modules/<module-name>/README.md
terraform {
required_version = ">= 1.0"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.0"
}
}
}
variable "project_id" {
description = "The project ID"
type = string
}
output "id" {
description = "The ID of the created resource"
value = google_resource.main.id
}