install
source · Clone the upstream repo
git clone https://github.com/Najia-afk/Aria_moltbot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Najia-afk/Aria_moltbot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/aria_skills/skill_guide" ~/.claude/skills/najia-afk-aria-moltbot-skill-guide && rm -rf "$T"
manifest:
aria_skills/skill_guide/SKILL.mdsource content
skill_guide
Self-documentation reader for Aria's skill system.
Purpose
Lets Aria read any skill's SKILL.md before calling its tools. This enables self-onboarding: when a new skill is added with a SKILL.md, Aria can read it on demand to understand usage, parameters, and examples.
Layer
Layer 2 — Core (available to all agents)
Tools
skill_guide__read
Read a skill's documentation.
| Parameter | Type | Required | Description |
|---|---|---|---|
| string | yes | Snake_case directory name (e.g. ) |
When to use: Before calling tools from an unfamiliar skill, or when a tool call fails and you need to understand the expected parameters.
skill_guide__list
List all available skills with their layer, status, and description. No parameters required.
When to use: To discover what capabilities exist, or to find the right skill name before calling
skill_guide__read.
Example Workflow
- User asks Aria to do something unfamiliar
- Aria calls
to find which skill handles itskill_guide__list - Aria calls
to learn usageskill_guide__read(skill_name="the_skill") - Aria calls the skill's tools with correct parameters