> ## 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

> 325+ pre-built operations for cloud management — run infrastructure tasks, security checks, and cost analysis without writing custom prompts

The Operations Hub provides 325+ pre-built operations organized by category. Each operation is a tested, optimized prompt pattern ready to execute.

<Card title="Open Operations Hub" icon="play" href="https://app.cloudthinker.io">
  Browse and execute operations in the CloudThinker console
</Card>

***

## The Problem With Starting From Scratch

Effective AI prompts for cloud operations require domain expertise to write. "Analyze my EC2 instances" produces a generic overview. A well-crafted prompt that specifies the right metrics, thresholds, timeframes, and output format produces actionable recommendations with dollar estimates.

Most teams spend the first weeks of using any AI tool just figuring out the right way to ask questions. Operations Hub eliminates that learning curve: every operation is already optimized for the task, with the right agent, the right context parameters, and the right output format.

***

## How Existing Runbook Libraries Compare

| Approach                            | What It Does                        | What's Missing                                                 |
| ----------------------------------- | ----------------------------------- | -------------------------------------------------------------- |
| **AWS runbooks (Systems Manager)**  | Procedural scripts for common tasks | Script-based, no AI reasoning, requires AWS expertise to write |
| **Ansible playbooks**               | Infrastructure automation           | Requires YAML/Python, no natural language, no AI analysis      |
| **Internal wikis / runbooks**       | Team documentation                  | Manual execution, goes stale, not connected to live infra      |
| **Prompt libraries in Notion/docs** | Shared prompts for teams            | Not executable, not tested, not maintained                     |

Operations Hub provides tested, optimized, immediately executable AI operations — no prompt engineering required.

***

## Categories

<CardGroup cols={3}>
  <Card title="Cost Optimization" icon="dollar-sign" color="#28A745">
    Right-sizing, reserved instances, unused resources, spending analysis
  </Card>

  <Card title="Security" icon="shield-check" color="#DC3545">
    Audits, compliance checks, vulnerability scans, IAM reviews
  </Card>

  <Card title="Performance" icon="gauge" color="#17A2B8">
    Bottleneck detection, query optimization, scaling analysis
  </Card>

  <Card title="Operational" icon="cog" color="#6C757D">
    Backup verification, patch compliance, maintenance tasks
  </Card>

  <Card title="Scalability" icon="chart-line" color="#FFC107">
    Auto-scaling, load balancing, capacity planning
  </Card>

  <Card title="Kubernetes" icon="https://mintcdn.com/cloudthinker/aLd-ttc-SCW-aFky/images/icons/kubernetes.svg?fit=max&auto=format&n=aLd-ttc-SCW-aFky&q=85&s=7c03292954ff635a1994623a5c39971b" color="#326CE5" width="24" height="24" data-path="images/icons/kubernetes.svg">
    Cluster health, pod optimization, RBAC audits
  </Card>
</CardGroup>

***

## Sample Operations

### Cost Optimization

| Operation                           | Agent       | Difficulty |
| ----------------------------------- | ----------- | ---------- |
| EC2 Instance Right-sizing           | @alex       | Easy       |
| Reserved Instance Coverage Analysis | @alex       | Medium     |
| Unused EBS Volume Detection         | @alex       | Easy       |
| RDS Cost Optimization               | @alex @tony | Medium     |

### Security

| Operation                   | Agent   | Difficulty |
| --------------------------- | ------- | ---------- |
| Security Group Audit        | @oliver | Medium     |
| IAM Permission Review       | @oliver | Advanced   |
| S3 Public Access Check      | @oliver | Easy       |
| SOC 2 Compliance Assessment | @oliver | Advanced   |

### Performance

| Operation                       | Agent | Difficulty |
| ------------------------------- | ----- | ---------- |
| Slow Query Analysis             | @tony | Medium     |
| Database Performance Dashboard  | @tony | Easy       |
| Auto Scaling Group Optimization | @alex | Medium     |
| EKS Resource Utilization        | @kai  | Medium     |

***

## Using Operations

<Steps>
  <Step title="Browse">
    Navigate to the Operations Hub and filter by category, agent, or difficulty
  </Step>

  <Step title="Select">
    Click an operation to see its details, required connections, and expected output
  </Step>

  <Step title="Customize">
    Modify parameters like timeframe, scope, or thresholds as needed
  </Step>

  <Step title="Execute">
    Run the operation and review results in real-time
  </Step>
</Steps>

***

## Custom Operations

Create your own operations using [CloudThinker Language](/guide/language):

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

# Multi-agent operations
@anna coordinate security review:
  @oliver: audit security groups and IAM
  @alex: check for public resources
  @kai: review Kubernetes RBAC
```

See [CloudThinker Language](/guide/language) for complete syntax reference.

***

## Scheduling Operations

Set up recurring operations for continuous monitoring:

```bash theme={null}
# Daily cost summary
@alex #schedule daily cost summary at 9am

# Weekly security audit
@oliver #schedule weekly security scan every Friday 5pm

# Monthly executive report
@anna #schedule monthly infrastructure report on 1st at 8am
```

***

## Related

<CardGroup cols={2}>
  <Card title="CloudThinker Language" icon="code" href="/guide/language">
    Complete syntax for creating custom operations
  </Card>

  <Card title="Agents" icon="robot" href="/guide/agents">
    Understand which agent to use for each operation type
  </Card>
</CardGroup>
