Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

atmos-config大气配置

Agent Skill

atmos-config 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

1,324

下载量

91
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:atmos-config(大气配置)
来源仓库:https://github.com/cloudposse/atmos
仓库路径:skills/atmos-config
安装命令:
npx skills add https://github.com/cloudposse/atmos --skill atmos-config
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cloudposse/atmos --skill atmos-config

简介

atmos-config 通过 atmos.yaml 统一管理项目级配置,包括 stacks、components 和模板引擎设置。

  • 它支持多 profile 切换和环境隔离,确保 dev/staging/prod 使用不同的资源配置。
  • 配置查找优先级固定,可通过 CLI flag 或环境变量覆盖默认搜索路径。
  • 任何配置变更都需同步更新文档,避免团队成员因理解偏差导致部署失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Atmos Project Configuration (atmos.yaml)

The atmos.yaml file is the central project configuration for Atmos. It defines how Atmos discovers stacks, where components live, how templates are processed, and how every subsystem (auth, stores, workflows, toolchain, validation, integrations) is configured. Every Atmos project needs at least one atmos.yaml.

Configuration Discovery

Atmos searches for atmos.yaml in this order (first found wins):

  1. --config CLI flag or ATMOS_CLI_CONFIG_PATH environment variable.
  2. Active profile (--profile flag or ATMOS_PROFILE environment variable).
  3. Current working directory (./atmos.yaml).
  4. Git repository root (<repo-root>/atmos.yaml).
  5. Parent directory walk (searches upward until found).
  6. Home directory (~/.atmos/atmos.yaml).
  7. System directory (/usr/local/etc/atmos/atmos.yaml on Linux/macOS, %LOCALAPPDATA%/atmos/atmos.yaml on Windows).

When multiple files are found, they are deep-merged with earlier sources taking precedence.

Environment Variable Override

Most atmos.yaml settings can be overridden via environment variables using the ATMOS_ prefix:

ATMOS_BASE_PATH=/path/to/project
ATMOS_STACKS_BASE_PATH=stacks
ATMOS_COMPONENTS_TERRAFORM_BASE_PATH=components/terraform
ATMOS_WORKFLOWS_BASE_PATH=stacks/workflows
ATMOS_LOGS_LEVEL=Debug

Minimal Configuration

The simplest atmos.yaml that works:

base_path: ""

stacks:
  base_path: "stacks"
  included_paths:
    - "**/*"
  excluded_paths:
    - "**/_defaults.yaml"
    - "catalog/**/*"
  name_template: "{{ .vars.stage }}"

components:
  terraform:
    base_path: "components/terraform"

Complete Section Overview

The atmos.yaml file supports these top-level sections. Each section is documented in detail in the sections reference.

Core Structure

SectionPurposeRelated Skill
base_pathRoot directory for all relative paths--
stacksStack manifest discovery, naming, inheritanceatmos-stacks
componentsComponent type paths and settings (Terraform, Helmfile, Packer, Ansible)atmos-components
importImport other atmos.yaml files for modular configuration--
versionMinimum/maximum Atmos version requirements--

Subsystems

SectionPurposeRelated Skill
workflowsWorkflow file discovery pathatmos-workflows
commandsCustom CLI command definitionsatmos-custom-commands
aliasesCommand alias mappingsatmos-custom-commands
templatesGo template and Gomplate processing settingsatmos-templates
schemasValidation schema base paths (JSON Schema, OPA, CUE)atmos-schemas
validateValidation behavior (EditorConfig)atmos-validation

Platform

SectionPurposeRelated Skill
authAuthentication providers, identities, keyring, integrationsatmos-auth
storesExternal key-value store backendsatmos-stores
vendorVendoring base path and retry settingsatmos-vendoring
toolchainCLI tool version management, registries, aliasesatmos-toolchain
devcontainerDevelopment container configurationsatmos-devcontainer

Settings and Integrations

SectionPurposeRelated Skill
settingsGlobal CLI behavior: terminal, telemetry, experimental features--
integrationsAtlantis, GitHub Actions, Atmos Pro configurationatmos-gitops
logsLog level and log file path--
errorsError format and Sentry integration--
envGlobal environment variables for all operations--
profilesNamed configuration profiles base path--
describedescribe command behavior settingsatmos-introspection
docsDocumentation generation settings--
metadataProject metadata (name, version, tags)--

Common Configuration Patterns

Multi-Environment Project

base_path: ""

stacks:
  base_path: "stacks"
  included_paths:
    - "orgs/**/*"
  excluded_paths:
    - "**/_defaults.yaml"
    - "catalog/**/*"
    - "mixins/**/*"
  name_template: "{{ .vars.tenant }}-{{ .vars.environment }}-{{ .vars.stage }}"

components:
  terraform:
    base_path: "components/terraform"
    command: "/usr/bin/terraform"
  helmfile:
    base_path: "components/helmfile"

workflows:
  base_path: "stacks/workflows"

logs:
  level: Info

With Authentication and Stores

base_path: ""

stacks:
  base_path: "stacks"
  included_paths:
    - "deploy/**/*"
  excluded_paths:
    - "**/_defaults.yaml"
    - "catalog/**/*"
  name_template: "{{ .vars.stage }}"

components:
  terraform:
    base_path: "components/terraform"

auth:
  providers:
    company-sso:
      kind: aws/iam-identity-center
      region: us-east-1
      start_url: https://company.awsapps.com/start
  identities:
    dev-admin:
      kind: aws/permission-set
      default: true
      via:
        provider: company-sso
      principal:
        name: AdminAccess
        account:
          name: development

stores:
  ssm/dev:
    type: aws-ssm-parameter-store
    options:
      region: us-east-1
      identity: dev-admin

With Toolchain and Validation

base_path: ""

stacks:
  base_path: "stacks"
  included_paths:
    - "**/*"
  excluded_paths:
    - "**/_defaults.yaml"
  name_template: "{{ .vars.stage }}"

components:
  terraform:
    base_path: "components/terraform"

schemas:
  jsonschema:
    base_path: "stacks/schemas/jsonschema"
  opa:
    base_path: "stacks/schemas/opa"

toolchain:
  registries:
    - type: aqua
      ref: "v4.332.0"

settings:
  terminal:
    pager: false
    syntax_highlighting:
      enabled: true

Importing Other Config Files

# atmos.yaml
import:
  - atmos.d/stacks.yaml
  - atmos.d/auth.yaml
  - atmos.d/stores.yaml

base_path: ""
components:
  terraform:
    base_path: "components/terraform"

Imported files are deep-merged into the main configuration, allowing modular organization of large configs.

Profiles

# profiles/developer/atmos.yaml
auth:
  providers:
    company-sso:
      session:
        duration: 8h
# profiles/ci/atmos.yaml
auth:
  providers:
    github-oidc:
      kind: github/oidc
      region: us-east-1

Activate with --profile developer or ATMOS_PROFILE=ci.

Terraform Component Settings

The components.terraform section has extensive subsystem configuration:

components:
  terraform:
    base_path: "components/terraform"
    command: "terraform"
    apply_auto_approve: false
    deploy_run_init: true
    init_run_reconfigure: true
    auto_generate_backend_file: true

    # Backend defaults applied to all Terraform components
    backend_type: s3
    backend:
      s3:
        encrypt: true
        bucket: "acme-terraform-state"
        dynamodb_table: "acme-terraform-state-lock"
        region: "us-east-1"
        key: "terraform.tfstate"
        acl: "bucket-owner-full-control"
        workspace_key_prefix: "terraform"

    # Shell configuration for `atmos terraform shell`
    shell:
      shell: "/bin/bash"

For the complete Terraform configuration reference, see the atmos-terraform skill.

Settings Section

Global CLI behavior and feature settings:

settings:
  # Terminal/UI settings
  terminal:
    pager: false
    max_width: 120
    colors: true
    unicode: true
    syntax_highlighting:
      enabled: true
      theme: dracula
    masking:
      enabled: true

  # Telemetry
  telemetry:
    enabled: true

  # Experimental features
  experimental:
    enabled: false

Version Constraints

Pin the minimum Atmos version required for the project:

version:
  check:
    enabled: true
    constraints: ">= 1.100.0"

Debugging Configuration

# Show resolved configuration
atmos describe config

# Show where atmos.yaml was loaded from
ATMOS_LOGS_LEVEL=Debug atmos version

# Validate the configuration
atmos validate stacks

Key Principles

  1. Single source of truth: One atmos.yaml (or a set of imported files) configures the entire project.
  2. Convention over configuration: Sensible defaults minimize required settings.
  3. Deep merging: Multiple config sources are merged, with CLI flags taking highest precedence.
  4. Environment variable overrides: Every setting has a corresponding ATMOS_ environment variable.
  5. Modular composition: Use import to split large configs across files.
  6. Profile switching: Named profiles swap entire config sections for different contexts.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.54%
按下载量换算31

Claude

30.8%
按下载量换算28

Cursor

20.68%
按下载量换算19

Gemini CLI

9.48%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills