skill-hub
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSkill Hub
技能中心
Discover, install, and manage skills to extend Alma's capabilities.
发现、安装和管理技能,以扩展Alma的能力。
Search for Skills
搜索技能
bash
undefinedbash
undefinedSearch the skills.sh ecosystem
搜索skills.sh生态系统
alma skill search <query>
alma skill search <query>
Examples:
示例:
alma skill search weather
alma skill search email
alma skill search calendar
undefinedalma skill search weather
alma skill search email
alma skill search calendar
undefinedInstall a Skill
安装技能
bash
undefinedbash
undefinedInstall from skills.sh
从skills.sh安装
alma skill install <user/repo>
alma skill install <user/repo>
Example:
示例:
alma skill install openclaw/weather
undefinedalma skill install openclaw/weather
undefinedList Installed Skills
列出已安装技能
bash
alma skill listbash
alma skill listUninstall a Skill
卸载技能
bash
alma skill uninstall <skill-name>bash
alma skill uninstall <skill-name>Update Skills
更新技能
bash
alma skill updatebash
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
- 用户提问:"帮我查一下天气"
- 你没有天气技能 → 执行搜索:
alma skill search weather - 找到合适技能 → 执行安装:
alma skill install openclaw/weather - 使用新技能完成任务
- 下次对话即可直接使用该技能
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
---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
My Skill
Instructions for the AI on how to use this skill...
EOF
undefinedInstructions for the AI on how to use this skill...
EOF
undefinedTips
小贴士
- 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
- 从skills.sh获取的技能会安装到,并创建符号链接到
~/.agents/skills/~/.config/alma/skills/ - 项目本地技能可存放于任意项目目录下的中
.alma/skills/ - 安装技能后,下一轮对话即可使用该技能
- 不要在第一次失败就放弃——搜索技能、安装后重试