AI Skill Marketplace
The Atmos AI Skill Marketplace enables you to install, share, and use community-created AI skills from GitHub repositories. Installed skills are stored in ~/.atmos/skills/ and appear in the TUI skill selector (Ctrl+A).
The Atmos Skill Marketplace is not related to Anthropic's Claude marketplace. This is Atmos's own system for installing and sharing specialized AI skills from GitHub repositories. Skills follow the Agent Skills open standard governed by the Linux Foundation's Agentic AI Foundation (AAIF).
Installing Skills
Install skills using various GitHub URL formats:
Only use --yes with skills from trusted sources. Always review skill metadata before installing, especially the tools.allowed section.
When you install a skill, Atmos downloads the repository, validates the SKILL.md file, checks version compatibility, prompts for confirmation, and registers it in the local skill registry.
Managing Installed Skills
List Installed Skills
Uninstall a Skill
Enable/Disable Skills
(Coming soon) Temporarily disable skills without uninstalling:
Creating Marketplace Skills
SKILL.md Format
Skills follow the Agent Skills open standard format -- a single SKILL.md file with YAML frontmatter and a Markdown body containing the system prompt.
your-skill-repo/
├── SKILL.md # Skill definition (required)
├── README.md # Documentation (recommended)
├── examples/ # Usage examples (optional)
└── LICENSE # License file (recommended)
SKILL.md Structure
The frontmatter declares metadata and tool access. The Markdown body is the AI system prompt.
SKILL.md (abbreviated)
name- Unique skill identifier in kebab-case.
display_name- User-facing display name.
version- Semantic version (e.g.,
1.2.3). author- Author name or organization.
description- Brief description of skill purpose.
category- One of:
general,analysis,refactor,security,validation,optimization. atmos.min_version- Minimum compatible Atmos version.
tools.allowed- Tools the skill can use. Tools in
restrictedrequire user confirmation each time. repository- GitHub repository URL.
Publishing Your Skill
Create a GitHub repository with a valid SKILL.md, tag a release, and share it:
Share your skill in Atmos Discussions and add the atmos-skill topic to your repository.
- Repository: prefix with
atmos-skill-, use kebab-case (e.g.,atmos-skill-cost-optimizer) - Skill name: no prefix, kebab-case (e.g.,
cost-optimizer) - Display name: title case (e.g., "Cost Optimizer")
Tool Access and Security
Skills declare which tools they need. Review the tools.allowed section before installing any skill.
Always review skill source code on GitHub before installing skills that request:
- File write access (
edit_file,write_stack_file,write_component_file) - Command execution (
execute_bash_command,execute_atmos_command)
Use the restricted field to require user confirmation for sensitive operations. A tool listed in both allowed and restricted means the skill can use it, but the user must approve each invocation.
Troubleshooting
Skill Not Found After Installation
Skill may be disabled or the registry is corrupted. Check with atmos ai skill list and inspect ~/.atmos/skills/registry.json.
Version Compatibility Error
Error: skill requires Atmos >= 1.50.0, but current version is 1.48.0
Upgrade Atmos (brew upgrade atmos) or install an older skill version (atmos ai skill install user/skill@v0.9.0).
Invalid Metadata Error
The skill's SKILL.md has malformed frontmatter. Report the issue to the skill author or try a different version tag.
Registry Corruption
Related Documentation
- AI Skills - Skill system overview and configuration
- AI Configuration - Configure AI providers
- AI Chat Command - Interactive AI chat interface
- Tool Execution - How AI skills use tools
- Community Discussions - Discover and share skills