AgentSkillsCN

enterprise

采用微服务、Kubernetes 和 Terraform 构建企业级系统。 包含 AI 原生方法论与单仓库架构模式。 通过“init enterprise”或“enterprise init”初始化项目。 当用户需要高流量、微服务或定制化基础设施时,请主动使用此技能。 触发条件:微服务、Kubernetes、Terraform、k8s、AWS、单仓库、AI 原生、 init enterprise、enterprise init、 마이크로서비스、모노레포、인프라、 マイクロサービス、モノレポ、インフラ、 微服务、单仓库、基础设施、 microservicios、estrategia empresarial、arquitectura、 microservices、 stratégie d'entreprise、architecture、 Microservices、Unternehmensstrategie、Architektur、 microservizi、strategia aziendale、architettura、 请勿用于:简单项目、静态网站或学习型项目

SKILL.md
--- frontmatter
name: enterprise
description: |
  Enterprise-grade system development with microservices, Kubernetes, and Terraform.
  Includes AI Native methodology and Monorepo architecture patterns.

  Project initialization with "init enterprise" or "enterprise init".

  Use proactively when user needs high traffic, microservices, or custom infrastructure.

  Triggers: microservices, kubernetes, terraform, k8s, AWS, monorepo, AI native,
  init enterprise, enterprise init,
  마이크로서비스, 모노레포, 인프라,
  マイクロサービス, モノレポ, インフラ,
  微服务, 单仓库, 基础设施,
  microservicios, estrategia empresarial, arquitectura,
  microservices, stratégie d'entreprise, architecture,
  Microservices, Unternehmensstrategie, Architektur,
  microservizi, strategia aziendale, architettura

  Do NOT use for: simple projects, static websites, learning projects

Enterprise Skill

Enterprise-grade systems with microservices, Kubernetes, and Terraform

Overview

The Enterprise skill provides guidance for building large-scale, production-ready systems with microservices architecture, container orchestration, and infrastructure-as-code.

When to Use

  • High-traffic applications
  • Multi-team development
  • Complex business logic
  • Regulatory compliance needs
  • Custom infrastructure requirements

Architecture Patterns

Monorepo Structure

code
enterprise-project/
├── packages/
│   ├── api-gateway/
│   ├── user-service/
│   ├── order-service/
│   ├── payment-service/
│   └── shared/
├── infrastructure/
│   ├── terraform/
│   └── kubernetes/
├── docs/
│   ├── 01-plan/
│   ├── 02-design/
│   ├── 03-analysis/
│   └── 04-report/
├── turbo.json
└── package.json

Key Technologies

  • Container: Docker, Kubernetes
  • IaC: Terraform, Pulumi
  • CI/CD: GitHub Actions, ArgoCD
  • Observability: Prometheus, Grafana, Jaeger
  • Service Mesh: Istio, Linkerd

Key Phases (Enterprise Level)

PhaseRequiredDescription
1. SchemaDomain modeling
2. ConventionTeam coding standards
3. MockupUI/UX prototypes
4. APIAPI contracts (OpenAPI)
5. Design SystemShared component library
6. UI IntegrationFrontend integration
7. SEO/SecuritySecurity hardening
8. ReviewArchitecture review
9. DeploymentMulti-env deployment

Getting Started

bash
# Initialize Enterprise project
/enterprise init

# Full pipeline with all phases
/development-pipeline start

Infrastructure Example

hcl
# infrastructure/terraform/main.tf
module "eks" {
  source  = "terraform-aws-modules/eks/aws"
  version = "~> 19.0"

  cluster_name    = "enterprise-cluster"
  cluster_version = "1.28"

  vpc_id     = module.vpc.vpc_id
  subnet_ids = module.vpc.private_subnets
}