Skills
Overview
Section titled “Overview”A skill file is a Markdown document that becomes the agent’s system prompt. Specific sections (## Tools, ## Skills, ## Channels, ## Guardrails) are also parsed for protocol metadata — they populate the A2A Agent Card, MCP server info, and channel routing.
Skill File Format
Section titled “Skill File Format”A skill file is plain Markdown. The # Title becomes the agent’s display name. The body text becomes the system prompt verbatim. Named sections provide structured metadata.
# Dr. Molar — Emergency Dental Assistant
You are Dr. Molar, a friendly dental emergency assistant.You help patients who have broken, chipped, or cracked teeth.
## Skills- Assess dental emergencies (broken, chipped, cracked teeth)- Provide first-aid instructions for dental injuries- Recommend pain management strategies
## Tools- assess_emergency: Classify the severity of a dental emergency- pain_relief: Recommend appropriate pain management
## Channels- slack- telegram- web
## Guardrails- Always state you are an AI, not a real dentist- Never diagnose — only provide general guidance- Always recommend seeing a real dentistSection Semantics
Section titled “Section Semantics”| Section | What it does |
|---|---|
# Title | Agent display name in console UI and Agent Card |
| Body text | Becomes the system prompt sent to the LLM |
## Skills | Exported as capabilities in the A2A Agent Card |
## Tools | Cross-referenced against @AiTool methods at startup. Mismatches produce warnings. |
## Channels | Enables routing to listed channels (web, slack, telegram, discord, whatsapp, messenger) |
## Guardrails | Included in the system prompt and exported to MCP server info |
Tool Cross-Referencing
Section titled “Tool Cross-Referencing”At startup, the framework cross-references the ## Tools section against @AiTool methods on the agent class. If a tool is listed in the skill file but no matching @AiTool method exists, a warning is logged:
WARN: Skill file lists tool 'assess_emergency' but no @AiTool method foundThis catches typos and stale skill files.
Auto-Discovery
Section titled “Auto-Discovery”Atmosphere searches for skill files in this order:
META-INF/skills/{agent-name}/SKILL.md— preferred, can be packaged in JARsprompts/{agent-name}.mdprompts/{agent-name}-skill.mdprompts/skill.md— fallback
No skillFile attribute needed — the framework matches by agent name automatically.
src/main/resources/ prompts/ dentist-skill.md # matches @Agent(name = "dentist") ceo-skill.md # matches @Agent(name = "ceo")For distributing skills as Maven JARs:
src/main/resources/ META-INF/ skills/ code-reviewer/ SKILL.md # matches @Agent(name = "code-reviewer")Referencing Skills from @Agent
Section titled “Referencing Skills from @Agent”Explicitly bind a skill file:
@Agent(name = "dentist", skillFile = "prompts/dentist-skill.md", description = "Emergency dental assistant")public class DentistAgent { ... }Or let auto-discovery find it by name:
@Agent(name = "dentist", description = "Emergency dental assistant")public class DentistAgent { ... }// auto-discovers prompts/dentist-skill.md or prompts/dentist.mdMulti-Agent Skill Files
Section titled “Multi-Agent Skill Files”In a @Coordinator fleet, each agent has its own skill file. The coordinator also has one:
prompts/ ceo-skill.md # @Coordinator(name = "ceo") research-skill.md # @Agent(name = "research") strategy-skill.md # @Agent(name = "strategy") finance-skill.md # @Agent(name = "finance") writer-skill.md # @Agent(name = "writer")Each specialist agent gets its own system prompt, tools, guardrails, and channel configuration. The coordinator’s skill file describes the orchestration strategy.
Importing Skills from GitHub
Section titled “Importing Skills from GitHub”The Atmosphere CLI imports skills from GitHub and generates a complete Spring Boot project:
# Import from the Atmosphere-curated skills registryatmosphere import https://github.com/Atmosphere/atmosphere-skills/blob/main/skills/dentist/SKILL.md
# Or from Anthropic's skills repositoryatmosphere import https://github.com/anthropics/skills/blob/main/skills/frontend-design/SKILL.md
cd frontend-design && LLM_API_KEY=your-key ./mvnw spring-boot:run# Open http://localhost:8080/atmosphere/console/The import command:
- Parses the Markdown into
@Agentannotations - Extracts
## Toolsinto@AiToolmethod stubs - Places the skill file at
META-INF/skills/for auto-discovery - Generates a Spring Boot project that compiles and runs immediately
Atmosphere Skills registry
Section titled “Atmosphere Skills registry”Atmosphere/atmosphere-skills
is the framework’s curated skill-file registry — each skill ships a
tested personality, tool manifest, channel routing, and guardrail set
that plugs directly into @Agent via atmosphere import. The
Atmosphere samples (dentist agent, multi-agent startup team, personal
assistant) ship skill files that also live in this registry for reuse
across projects.
Third-party registries
Section titled “Third-party registries”atmosphere import also works against any repository following the
Agent Skills standard:
Anthropic,
Antigravity
(1,200+ skills), and
K-Dense AI.
Trusted Sources
Section titled “Trusted Sources”Remote imports are restricted to trusted sources by default. Use --trust for other URLs:
# Trusted by defaultatmosphere import https://github.com/anthropics/skills/...
# Other sources require --trustatmosphere import https://github.com/my-org/skills/... --trustThe Agent Skills Standard
Section titled “The Agent Skills Standard”Atmosphere skill files follow the Agent Skills standard — an open specification for portable agent skill definitions. Skills written for Atmosphere can be used by any runtime that supports the standard, and vice versa.
- Portable — pure Markdown, runtime-agnostic
- Composable — agents can reference multiple skill files
- Versioned — YAML frontmatter supports semantic versioning
- Discoverable — standard directory layout enables auto-discovery
See Also
Section titled “See Also”- @Agent — how agents reference skill files
- @Coordinator — multi-agent skill file patterns
- Dentist Agent sample — skill file with tools, channels, and guardrails
- Startup Team sample — 5-agent fleet with coordinator skill