Atmos Emulators

SkillCloud & infra

This skill lets your AI run local emulators of AWS, GCP, Azure, Kubernetes, Vault, and OpenBao, so you can test cloud setups without touching real cloud services. It handles the emulator lifecycle, including starting services, checking their health, and keeping state between runs. Your AI manages everything through built-in emulator commands, working with the Atmos tool.

Available today. Use it from your connected AI after setup.

After adding the skill, ask your AI to start the emulators you need and run your cloud setup against them. Health checks confirm the emulators are ready before your tests begin.

Then ask your AI: use the Atmos Emulators skill

What your AI can do with it

  • Run local emulators of AWS, GCP, and Azure for testing
  • Spin up local Kubernetes, Vault, and OpenBao environments
  • Test cloud configurations without using real infrastructure
  • Check emulator health before running your tests
  • Keep emulator state between runs
  • Start and manage emulators with built-in commands

What this skill tells your AI

The instructions your AI receives, as published by cloudposse/atmos in agent-skills/skills/atmos-emulator/SKILL.md and read by ahel’s review.

Use this skill for local emulators managed by Atmos. Emulators are stack-scoped, persistent containers that stand in for cloud APIs, Kubernetes, Vault/OpenBao, or OCI registries during local development and testing.

Related Skills

NeedLoad
Container component lifecycleatmos-container
YAML !emulator referencesatmos-yaml-functions
Secrets backed by Vault/OpenBao/SOPS/cloud storesatmos-secrets
Workflow emulator and wait stepsatmos-workflows

Component Shape

Define emulators under components.emulator:

components:
  emulator:
    aws:
      driver: localstack/aws
      region: us-east-1
      ephemeral: false
      container:
        healthcheck:
          test: ["CMD", "awslocal", "s3", "ls"]

Supported driver families include AWS, GCP, Azure, Kubernetes (k3s), Vault/OpenBao, and registry emulators. Check the local docs for exact driver names before generating config for a specific driver.

Commands

CommandPurpose
atmos emulator up <name> -s <stack>Start an emulator
atmos emulator down <name> -s <stack>Stop and remove an emulator
atmos emulator reset <name> -s <stack>Stop and wipe persisted state
atmos emulator ps -s <stack>List configured emulators that are running
atmos emulator list -s <stack>List configured emulators and status
atmos emulator logs <name> -s <stack>Show emulator logs
atmos emulator exec <name> -s <stack> -- <cmd>Run a command in the emulator container

Use --dry-run to preview.

list and ps are configuration-scoped: emulator components declared in the current Atmos project are the inventory, and the container runtime only supplies their status. Use --runtime on either command only when diagnosing raw labeled containers outside the current project configuration. Lifecycle commands prompt for a stack on an interactive TTY when -s is omitted.

YAML Integration

Use !emulator to resolve connection details from stack config instead of hardcoding localhost ports. This keeps components portable across stacks, CI, and local developer machines.

Guidance

  • Use emulators for local integration tests and agent workflows that need cloud-like APIs without cloud credentials.
  • Keep emulator state persistent only when tests or development workflows benefit from it.
  • Prefer wait/wait-all workflow steps or health checks before running dependent commands.
  • Use local registry emulators when testing container build/push flows.
  • Use Vault/OpenBao emulators together with atmos-secrets for local secret workflows.

Signals

GitHub stars
1k
Forks
175
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
atmos-emulator
Source
github.com/cloudposse/atmos