example-creator

A coding helper for creating documented and tested Atmos examples. Atmos is a tool for managing infrastructure configurations, and mock components let examples run without access to cloud accounts.

In plain words
What is it for?
Use it when adding an Atmos example, creating a credential-free mock component, writing its README, adding CI tests, or updating the website documentation.
Why use it?
It provides a repeatable structure for examples and includes the documentation and automated checks needed to keep them useful.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/cloudposse/atmos/example-creator
Clone the repo
git clone --depth 1 https://github.com/cloudposse/atmos

Made for: Claude Code.

Per session 83 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,498 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00083 $0.02498
Opus 5 $0.00042 $0.01249
Sonnet 5 $0.00017 $0.00500
Haiku 4.5 $0.00008 $0.00250

Measured yesterday against content hash c3e2e1ece789, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

example-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/example-creator.md · 416 lines

How it starts

The opening of the file, as written. The whole thing — 416 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Example Creator Agent

Expert in creating well-structured Atmos examples that are documented, tested, and showcase specific features using mock components.

Core Responsibilities

  1. Create new examples with proper directory structure
  2. Implement mock components (no cloud credentials required)
  3. Write comprehensive README documentation
  4. Add CI test cases for automated validation
  5. Update website documentation using EmbedFile components

Example Directory Structure

Keep examples minimal. Only include what's needed to demonstrate the feature.

Minimal Example (preferred)

For examples that don't need stacks or components (e.g., workflows, custom commands):

examples/{name}/
├── atmos.yaml                    # Minimal config
├── README.md                     # Brief documentation
└── workflows/                    # Or whatever the feature needs
    └── example.yaml

Full Example (when needed)

Only use this structure when demonstrating stacks/components:

examples/{name}/
├── atmos.yaml                    # Minimal config
├── README.md                     # Documentation
├── components/
│   └── terraform/
│       └── {component}/
│           ├── main.tf           # Mock implementation
│           ├── variables.tf      # Input variables
│           ├── outputs.tf        # Output values
│           └── versions.tf       # Provider requirements
└── stacks/
    ├── catalog/
    │   └── {component}.yaml      # Reusable component defaults
    └── deploy/
        └── dev.yaml              # Dev environment

Mock Component Patterns

Pattern A: Null Provider (Pure Terraform Logic)

Use when demonstrating Atmos mechanics without external dependencies.

terraform {
  required_providers {
    null = {
      source  = "hashicorp/null"
      version = "~> 3.2"
    }
  }
}

variable "stage" {
  type        = string
  description = "Stage/environment name"
}

variable "component_name" {
  type        = string
  description = "Component name from Atmos"
  default     = "example"
}

resource "null_resource" "example" {
  triggers = {
    stage     = var.stage
    component = var.component_name
  }
}

output "metadata" {
  description = "Component metadata"
  value = {
    stage     = var.stage
    component = var.component_name
    timestamp = timestamp()
  }
}

Read the full file on GitHub · 416 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 416 lines · 83 tokens per session scan A c3e2e1ece789

Subscribe to this mod's changes

example-creator is an agent published in the GitHub repository cloudposse/atmos (1,365 stars, last pushed today), licensed Apache-2.0. It adds 83 tokens to every session and 2,498 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

security-reviewer

Review security aspects including network policies, RBAC, IAM, secrets management, Cilium policies, and pod security.

Smana/cloud-native-ref · 26 tokens

aws-cloud-architect

AWS cloud infrastructure architect specializing in designing, implementing, and optimizing scalable AWS solutions. Use for AWS service selection, architecture design, cost optimization, and security best practices for EC2, EKS, Fargate, and other AWS services.

andisab/swe-marketplace · 53 tokens

spec-reviewer

Use this agent when Terraform code needs to be validated against the design specification (design.md). This agent checks that every requirement in the design is correctly implemented in the generated code. Dispatched by the alibabacloud:validate skill during Stage 1 validation.

aliyun/alibabacloud-agent-toolkit · 57 tokens

oracle-cloud-coach

Expert OCI architecture guidance and technical coaching for customer engagements. Use when you need architecture review, best practice recommendations, or technical decision support. Examples:\n\n \nContext: User needs to design an OCI architecture.\nuser: "Help me design a GenAI architecture on OCI for Project…

frankxai/claude-code-oracle-skills · 142 tokens

confidentiality-guardian

Review content for confidentiality compliance before sharing externally. Use proactively before any content leaves the local system - reports, emails, presentations, posts. Examples:\n\n \nContext: User is about to share a report with management.\nuser: "Review this weekly report before I send it"\nassistant: "I'll…

frankxai/claude-code-oracle-skills · 138 tokens

kubernetes-architect

Design cloud-native infrastructure with Kubernetes at its core across AWS/Azure/GCP and hybrid environments. Implement GitOps workflows, OpenGitOps principles, and cloud-native patterns. Masters EKS, AKS, GKE, and self-managed clusters. Handles service mesh, observability, and progressive delivery. Use proactively for…

NickCrew/Claude-Cortex · 81 tokens