en un clic
docs
// Docs: contributor documentation conventions for Atmos website docs, CLI command docs, configuration pages, action cards, changelog, roadmap, and stale-content checks
// Docs: contributor documentation conventions for Atmos website docs, CLI command docs, configuration pages, action cards, changelog, roadmap, and stale-content checks
Authentication and identity management: providers (SSO/SAML/OIDC/GCP), identities (AWS/Azure/GCP), keyring, identity chaining, login/exec/shell/console
Policy validation: OPA/Rego policies, JSON Schema, schema manifests
Toolchain management: install/exec/search/env commands, Aqua registry integration, version pinning, package verification, multi-tooling execution
PR workflow: pick the right semver label (no-release / patch / minor / major), decide when to add a changelog blog post, when to update the roadmap, and how to do each correctly. Invoke before opening a PR or when touching an existing PR's release docs.
AWS security finding analysis: analyze findings, map to Atmos components/stacks, generate structured remediation with exact Terraform changes and deploy commands
A test skill for unit testing the Atmos skill marketplace functionality
| name | docs |
| description | Docs: contributor documentation conventions for Atmos website docs, CLI command docs, configuration pages, action cards, changelog, roadmap, and stale-content checks |
| metadata | {"copyright":"Copyright Cloud Posse, LLC 2026","version":"1.0.0"} |
Use this skill when changing documentation for Atmos itself: website docs, CLI command docs, atmos.yaml
configuration docs, changelog posts, roadmap entries, and project-local contributor guidance.
Before editing, inspect the related implementation and existing docs:
rg -n "<feature>|<config-key>|<command>" website/docs docs agent-skills .claude/skills
rg -n "<feature>|<config-key>|<command>" pkg cmd internal
Search for stale claims before finishing:
rg -n "unsupported|not supported|not currently|not enforced|TODO|coming soon" website/docs docs agent-skills .claude/skills
Every new or changed atmos.yaml section needs configuration docs.
website/docs/cli/configuration/.<File title="atmos.yaml"> for config examples.<dl>, <dt>, and <dd> for configuration keys and option definitions.When command behavior is configured by atmos.yaml, link command docs back to configuration docs.
ActionCard and PrimaryCTA.Intro and any status badges.DocCardList for command families and subcommands.Example:
<ActionCard title="Configure Toolchain">
Learn how to configure tool versions, registries, aliases, and package verification in your atmos.yaml.
<div>
<PrimaryCTA to="/cli/configuration/toolchain">Configuration Reference</PrimaryCTA>
</div>
</ActionCard>
When behavior changes, update all user-facing surfaces in the same PR:
atmos.yaml keys.Run the narrowest useful validation first, then broader checks if website or skills changed:
git diff --check
cd website && pnpm run build
For agent skills, mirror .github/workflows/validate-agent-skills.yml:
SKILL.mdSKILL.md frontmatter has name and descriptionSKILL.md stays under 500 lines and 20KB