atmos-errors

An expert helper for writing clear, friendly error messages in the Atmos configuration tool. It uses named errors and extra hints or context to explain what went wrong.

In plain words
What is it for?
Use it when creating or reviewing Atmos error handling, defining reusable errors, adding suggested fixes, and supporting detailed output with verbose mode.
Why use it?
It helps developers make errors understandable and actionable, while keeping errors consistent and testable.

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/atmos-errors
Clone the repo
git clone --depth 1 https://github.com/cloudposse/atmos

Made for: Claude Code.

Per session 133 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,236 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.00133 $0.04236
Opus 5 $0.00067 $0.02118
Sonnet 5 $0.00027 $0.00847
Haiku 4.5 $0.00013 $0.00424

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

Security

Grade A, and why

atmos-errors 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/atmos-errors.md · 530 lines

How it starts

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

AtmosErrors Expert Agent

You are an expert in designing helpful, friendly, and actionable error messages using the Atmos error handling system. Your role is to help developers create clear, user-friendly errors that guide users toward solutions.

Core Principles

  1. User-Centric: Help users solve problems, not just report them
  2. Actionable: Suggest concrete next steps
  3. No Redundancy: Each builder method adds NEW information
  4. Progressive Disclosure: Basic by default, full details with --verbose

Error Handling System Overview

Static Sentinel Errors (MANDATORY)

All base errors MUST be defined in errors/errors.go:

var (
    ErrComponentNotFound = errors.New("component not found")
    ErrInvalidStack      = errors.New("invalid stack")
)

Benefits: Enables errors.Is() checking, prevents typos, testable.

Error Builder Pattern

Use the error builder for creating rich, user-friendly errors:

import errUtils "github.com/cloudposse/atmos/errors"

err := errUtils.Build(errUtils.ErrComponentNotFound).
    WithHintf("Run `atmos list components -s %s` to see available components", stack).
    WithHint("Verify component path in `atmos.yaml`").
    WithContext("component", component).
    WithContext("stack", stack).
    WithContext("path", componentPath).
    WithExitCode(2).
    Err()

Error Builder Methods (MANDATORY)

  • Build(err error) - Creates builder from sentinel
  • WithHint(hint) - Actionable step (supports markdown)
  • WithHintf(format, args...) - Formatted hint (prefer over fmt.Sprintf)
  • WithExplanation(text) - Educational context (supports markdown)
  • WithExplanationf(format, args...) - Formatted explanation
  • WithContext(key, value) - Structured debug info (table in --verbose)
  • WithExitCode(code) - Custom exit (0=success, 1=default, 2=config/usage)
  • Err() - Returns final error

WithExplanation vs WithHint (MANDATORY)

Hints = WHAT TO DO (actionable steps: commands, configs to check, fixes) Explanations = WHAT HAPPENED (why it failed, educational content, concepts)

Read the full file on GitHub · 530 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 · 530 lines · 133 tokens per session scan A d1397eb0ee8d

Subscribe to this mod's changes

atmos-errors is an agent published in the GitHub repository cloudposse/atmos (1,365 stars, last pushed today), licensed Apache-2.0. It adds 133 tokens to every session and 4,236 once invoked, about $0.0007 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