skill-hub
Original:🇺🇸 English
Translated
Search, install, and manage Alma skills from the skills.sh ecosystem. Use when the user needs a capability Alma doesn't have yet, or when you encounter a task you can't do with current skills.
1installs
Sourcenaohainezha/skill
Added on
NPX Install
npx skill4agent add naohainezha/skill skill-hubTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Skill Hub
Discover, install, and manage skills to extend Alma's capabilities.
Search for Skills
bash
# Search the skills.sh ecosystem
alma skill search <query>
# Examples:
alma skill search weather
alma skill search email
alma skill search calendarInstall a Skill
bash
# Install from skills.sh
alma skill install <user/repo>
# Example:
alma skill install openclaw/weatherList Installed Skills
bash
alma skill listUninstall a Skill
bash
alma skill uninstall <skill-name>Update Skills
bash
alma skill updateWhen to Use
- User asks you to do something you can't do with current tools/skills
- You encounter a task that would benefit from a specialized skill
- User explicitly asks to install or find new capabilities
- Be proactive: if a task fails because you lack a capability, search for a skill before giving up
Self-Evolution Flow
- User asks: "帮我查一下天气"
- You don't have a weather skill → search:
alma skill search weather - Found one → install:
alma skill install openclaw/weather - Now use the new skill to complete the task
- Next time, the skill is already available
Create a Custom Skill
bash
mkdir -p ~/.config/alma/skills/my-skill
cat > ~/.config/alma/skills/my-skill/SKILL.md << 'EOF'
---
name: my-skill
description: What this skill does
allowed-tools:
- Bash
- Read
---
# My Skill
Instructions for the AI on how to use this skill...
EOFTips
- Skills from skills.sh are installed to and symlinked to
~/.agents/skills/~/.config/alma/skills/ - Project-local skills can live in within any project directory
.alma/skills/ - After installing a skill, it's available in the next conversation turn
- Don't give up on the first failure — search for skills, install them, and try again