> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloudthinker.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Operations Hub

> 비용, 보안, 성능, Kubernetes 카테고리별로 사전 구축된 클라우드 운영 작업을 탐색하고 실행하세요.

Operations Hub는 카테고리별로 정리된 사전 구축된 운영 패턴을 제공합니다. 각 운영 작업은 에이전트, 도구 태그, 검증된 지시사항을 조합하여 처음부터 프롬프트를 작성하지 않아도 바로 실행할 수 있습니다.

## 호출 형식

```text theme={null}
@agent #tool instruction
```

| 부분            | 설명                                                               |
| ------------- | ---------------------------------------------------------------- |
| `@agent`      | 운영 작업을 담당하는 에이전트 (Alex, Oliver, Tony, Kai, 또는 Anna)              |
| `#tool`       | 출력 유형: `#dashboard`, `#report`, `#recommend`, `#alert`, `#chart` |
| `instruction` | 자연어 작업 설명 — 범위, 기간, 필터는 여기에 작성                                   |

전체 문법 레퍼런스는 [CloudThinker Language](/ko/guide/language)를 참고하세요.

## 운영 카테고리

| 카테고리       | 주요 내용                             | 주 에이전트     |
| ---------- | --------------------------------- | ---------- |
| 비용 최적화     | 적정 크기 조정, 예약 인스턴스, 미사용 리소스, 지출 분석 | Alex       |
| 보안         | 감사, 컴플라이언스 검사, 취약성 스캔, IAM 검토     | Oliver     |
| 성능         | 병목 탐지, 쿼리 최적화, 스케일링 분석            | Alex, Tony |
| 운영         | 백업 확인, 패치 컴플라이언스, 유지 관리 작업        | Alex       |
| 확장성        | 오토스케일링, 부하 분산, 용량 계획              | Alex       |
| Kubernetes | 클러스터 상태, 파드 최적화, RBAC 감사          | Kai        |

## 샘플 운영 작업

### 비용 최적화

| 운영 작업             | 에이전트       | 예시 프롬프트                                                                    |
| ----------------- | ---------- | -------------------------------------------------------------------------- |
| EC2 인스턴스 적정 크기 조정 | Alex       | `@alex #recommend right-size EC2 instances in us-east-1 over past 30 days` |
| 예약 인스턴스 커버리지      | Alex       | `@alex #report reserved instance coverage vs on-demand spend`              |
| 미사용 EBS 볼륨 탐지     | Alex       | `@alex #report unused EBS volumes across all regions`                      |
| RDS 비용 최적화        | Alex, Tony | `@alex @tony #recommend RDS cost reduction for production databases`       |

### 보안

| 운영 작업           | 에이전트   | 예시 프롬프트                                                                |
| --------------- | ------ | ---------------------------------------------------------------------- |
| 보안 그룹 감사        | Oliver | `@oliver #report open security groups exposing public internet access` |
| IAM 권한 검토       | Oliver | `@oliver #recommend least-privilege IAM policy changes`                |
| S3 공개 액세스 확인    | Oliver | `@oliver #report S3 buckets with public read or write access`          |
| SOC 2 컴플라이언스 평가 | Oliver | `@oliver #report SOC 2 control gaps across AWS account`                |

### 성능

| 운영 작업          | 에이전트 | 예시 프롬프트                                                               |
| -------------- | ---- | --------------------------------------------------------------------- |
| 느린 쿼리 분석       | Tony | `@tony #report top slow queries in production RDS over past 7 days`   |
| 데이터베이스 성능 대시보드 | Tony | `@tony #dashboard database performance metrics for all RDS instances` |
| 오토스케일링 그룹 최적화  | Alex | `@alex #recommend auto scaling policy changes for web tier`           |
| EKS 리소스 사용률    | Kai  | `@kai #report pod resource utilization across production cluster`     |

## 커스텀 운영 작업

카탈로그를 넘어서는 운영 작업을 구축하려면 에이전트, 도구 태그, 지시사항을 조합하세요:

```text theme={null}
@alex #recommend cost optimization for EC2 instances
  in us-east-1
  with <20% CPU utilization
  over past 30 days
  excluding production-critical
```

```text theme={null}
@anna coordinate security review:
  @oliver audit security groups and IAM
  @alex check for public resources
  @kai review Kubernetes RBAC
```

멀티 에이전트 문법과 모든 도구 태그는 [CloudThinker Language](/ko/guide/language)를 참고하세요.

## 스케줄링

운영 작업을 반복 스케줄로 실행하려면 [Tasks](/ko/guide/automation/tasks)를 사용하세요. Tasks를 통해 모든 운영 작업의 빈도, 범위, 알림 설정을 구성할 수 있습니다.

## 관련 항목

<CardGroup cols={2}>
  <Card title="CloudThinker Language" icon="code" href="/ko/guide/language">
    커스텀 운영 작업 생성을 위한 전체 문법
  </Card>

  <Card title="에이전트" icon="robot" href="/ko/guide/agents">
    각 운영 유형에 적합한 에이전트 이해
  </Card>
</CardGroup>
