Skip to content

Commit 6155017

Browse files
committed
docs(agents): surface the atmosphere-skills registry
@agent Skill File section now points at github.com/Atmosphere/atmosphere-skills — the framework-curated registry of personality packs, tool bundles, and guardrail templates. Skills tutorial adds a dedicated subsection for the Atmosphere registry alongside the existing third-party sources (Anthropic, Antigravity, K-Dense AI).
1 parent 62765ea commit 6155017

2 files changed

Lines changed: 30 additions & 2 deletions

File tree

docs/src/content/docs/agents/agent.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,14 @@ public class DevOpsAgent { ... }
167167

168168
If no `skillFile` is specified, Atmosphere matches by convention — an agent named `devops` will pick up `META-INF/skills/devops.skills` if present.
169169

170+
The companion [`Atmosphere/atmosphere-skills`](https://github.com/Atmosphere/atmosphere-skills)
171+
repository ships a curated registry of skill files — personality
172+
packs, tool bundles, guardrail templates — that work out of the box
173+
with `@Agent`. Pull one with `atmosphere import <url>` (see
174+
[`Skills`](/docs/agents/skills/#importing-skills-from-github)) and
175+
the CLI drops it under `META-INF/skills/` so convention-based
176+
auto-discovery picks it up without a code change.
177+
170178
## Conversation Memory
171179

172180
Conversation memory is enabled by default. Atmosphere maintains a session-scoped conversation history — the history is passed to the LLM on every request, giving the agent context about previous exchanges.

docs/src/content/docs/agents/skills.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,10 @@ Each specialist agent gets its own system prompt, tools, guardrails, and channel
140140
The Atmosphere CLI imports skills from GitHub and generates a complete Spring Boot project:
141141

142142
```bash
143-
# Import from Anthropic's skills repository
143+
# Import from the Atmosphere-curated skills registry
144+
atmosphere import https://github.com/Atmosphere/atmosphere-skills/blob/main/skills/dentist/SKILL.md
145+
146+
# Or from Anthropic's skills repository
144147
atmosphere import https://github.com/anthropics/skills/blob/main/skills/frontend-design/SKILL.md
145148

146149
cd frontend-design && LLM_API_KEY=your-key ./mvnw spring-boot:run
@@ -153,7 +156,24 @@ The import command:
153156
3. Places the skill file at `META-INF/skills/` for auto-discovery
154157
4. Generates a Spring Boot project that compiles and runs immediately
155158

156-
Compatible with [Anthropic](https://github.com/anthropics/skills), [Antigravity](https://github.com/sickn33/antigravity-awesome-skills) (1,200+ skills), [K-Dense AI](https://github.com/K-Dense-AI/claude-scientific-skills), and any repository following the [Agent Skills](https://agentskills.io/specification) format.
159+
### Atmosphere Skills registry
160+
161+
[`Atmosphere/atmosphere-skills`](https://github.com/Atmosphere/atmosphere-skills)
162+
is the framework's curated skill-file registry — each skill ships a
163+
tested personality, tool manifest, channel routing, and guardrail set
164+
that plugs directly into `@Agent` via `atmosphere import`. The
165+
Atmosphere samples (dentist agent, multi-agent startup team, personal
166+
assistant) ship skill files that also live in this registry for reuse
167+
across projects.
168+
169+
### Third-party registries
170+
171+
`atmosphere import` also works against any repository following the
172+
[Agent Skills](https://agentskills.io/specification) standard:
173+
[Anthropic](https://github.com/anthropics/skills),
174+
[Antigravity](https://github.com/sickn33/antigravity-awesome-skills)
175+
(1,200+ skills), and
176+
[K-Dense AI](https://github.com/K-Dense-AI/claude-scientific-skills).
157177

158178
## Trusted Sources
159179

0 commit comments

Comments
 (0)