Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have — image generation, social media, email, calendar, finance, DevOps, search, browser automation, etc.
68
83%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
This skill teaches you how to safely discover and install skills from external sources, including the Hermes Skills Hub, ClawHub (OpenClaw), GitHub repositories, and Letta community repos.
Skills can contain:
https://github.com/letta-ai/skills - Letta's community skillshttps://github.com/anthropics/skills - Anthropic's official skillsofficial/* - Hermes official optional skills (from NousResearch/hermes-agent)For ANY source other than the above:
This includes ClawHub community skills and arbitrary GitHub repos.
Even for skills from trusted sources, ALWAYS:
Skills from Hermes, OpenClaw, and other ecosystems were written for their own harnesses. After installing, read the full SKILL.md before using it and watch for:
hermes skills config, openclaw plugins install, /curator, /kanban. These won't exist in Letta. Determine whether the underlying capability can be achieved with Letta tools (Bash, the Skill tool, etc.) or if the skill simply doesn't apply.~/.hermes/skills/, ~/.openclaw/skills/, ~/.hermes/config.yaml. Letta stores skills in the agent's memfs (<memory-dir>/skills/). Adapt any path references.web toolset, OpenClaw browser tool). Map these to the equivalent Letta tools or note when no equivalent exists.platforms: [cli, discord, telegram] in frontmatter. Ignore platform restrictions that don't apply to Letta.requires.env in frontmatter and note any setup the user needs to do.If a skill's core knowledge (procedures, API references, best practices) is useful but its commands are harness-specific, adapt the instructions mentally or suggest the user install the relevant CLI tool. If a skill is entirely about harness-specific plumbing with no transferable knowledge, skip it and look for an alternative.
DO use when:
DON'T use for:
If you recognize a task that might have an associated skill, ask the user first:
"This sounds like something where a community skill might help. Would you like me to search for available skills? I can check the Hermes catalog, ClawHub, or GitHub. Or I can start coding right away if you prefer."
The user may prefer to start immediately rather than wait for skill discovery.
Only proceed with skill acquisition if the user agrees.
Hermes has a full Skills Hub with 88k+ skills across multiple registries. It includes official optional skills shipped with the project, plus community skills from skills.sh, well-known endpoints, GitHub repos, ClawHub, LobeHub, and browse.sh.
Searching Hermes skills:
The Hermes CLI has built-in search and browse:
hermes skills browse # Browse all hub skills (official first)
hermes skills browse --source official # Browse only official optional skills
hermes skills search kubernetes # Search all sources
hermes skills search react --source skills-sh # Search the skills.sh directory
hermes skills search https://mintlify.com/docs --source well-known
hermes skills inspect openai/skills/k8s # Preview before installingThe web catalog is at https://hermes-agent.nousresearch.com/docs/skills.
Hermes hub sources:
| Source | Example identifier | Notes |
|---|---|---|
official | official/security/1password | Optional skills shipped with Hermes |
skills-sh | skills-sh/vercel-labs/agent-skills/vercel-react-best-practices | skills.sh directory |
well-known | well-known:https://mintlify.com/docs/.well-known/skills/mintlify | Skills hosted at /.well-known/skills/ |
url | https://sharethis.chat/SKILL.md | Direct URL to a single SKILL.md |
github | openai/skills/k8s | GitHub repo/path |
clawhub | ClawHub registry skills | ClawHub marketplace |
lobehub | LobeHub registry skills | LobeHub marketplace |
browse-sh | browse-sh/airbnb.com/search-listings-ddgioa | browse.sh crawled skills |
If Hermes is not installed, you can browse the official optional skills directly:
# Browse the catalog on GitHub
# https://github.com/NousResearch/hermes-agent/tree/main/optional-skills
# Categories: autonomous-ai-agents, blockchain, creative, devops, finance,
# health, mcp, mlops, productivity, research, security, ...
# Or clone and browse locally
git clone --depth 1 https://github.com/NousResearch/hermes-agent.git /tmp/hermes-browse
ls /tmp/hermes-browse/optional-skills/
ls /tmp/hermes-browse/optional-skills/finance/
rm -rf /tmp/hermes-browseInstalling Hermes skills into Letta uses the official/ prefix (for official optional skills):
letta skills install official/finance/stocks
letta skills install official/blockchain/solana
letta skills install official/research/duckduckgo-search
letta skills install official/mlops/flash-attention
letta skills install official/creative/meme-generationThe official/<category>/<skill> form clones NousResearch/hermes-agent and copies from optional-skills/<category>/<skill>.
For non-official Hermes hub skills, use the GitHub URL or shorthand form to install into Letta (e.g., letta skills install openai/skills/k8s).
ClawHub (https://clawhub.ai) is the public registry for OpenClaw skills and plugins. It hosts community-contributed skills with versioning, security scans, and search.
Searching ClawHub skills:
# Browse the web registry
# https://clawhub.ai
# Or use the clawhub CLI if installed
clawhub search "calendar"
clawhub search "screenshot"
clawhub explore
# Or search via the API directly
curl -s "https://clawhub.ai/api/v1/skills?q=calendar" | jq '.items[].slug'Installing ClawHub skills uses the clawhub/ or clawhub: prefix:
letta skills install clawhub/nano-banana-pro
letta skills install clawhub:nano-banana-pro
letta skills install clawhub:nano-banana-pro@1.0.1 # pin a version
letta skills install https://clawhub.ai/skills/my-skill # URL form also worksNote: A bare slug like letta skills install nano-banana-pro will NOT resolve through ClawHub — you must include the clawhub/ or clawhub: prefix.
Any GitHub repository containing a SKILL.md can be installed directly.
# Full repo (installs from repo root)
letta skills install https://github.com/owner/repo
# Subdirectory (tree URL)
letta skills install https://github.com/owner/repo/tree/main/path/to/skill
# SKILL.md blob URL (installs parent directory)
letta skills install https://github.com/owner/repo/blob/main/path/to/skill/SKILL.md
# Shorthand: owner/repo/path
letta skills install owner/repo/path/to/skill| Repository | Description |
|---|---|
| https://github.com/letta-ai/skills | Community skills for Letta agents |
| https://github.com/anthropics/skills | Anthropic's official Agent Skills |
These can be installed via the GitHub URL forms above, or manually cloned and copied.
letta skills install CommandThe CLI handles downloading, placing the skill in the agent's memory, and committing the change:
letta skills install <source> --agent $AGENT_ID [--force]Your agent ID is always available as $AGENT_ID in the environment. Pass it explicitly with --agent to install into your own memfs:
letta skills install official/finance/stocks --agent $AGENT_ID
letta skills install clawhub/nano-banana-pro --agent $AGENT_ID| Flag | Purpose |
|---|---|
--agent <id> | Install into a specific agent's memfs (use $AGENT_ID for yourself) |
-n <name> | Resolve agent by name instead of id |
--force | Replace an existing skill with the same name |
Also available as a top-level alias: letta install <source> --agent $AGENT_ID.
Managing installed skills:
letta skills list --agent $AGENT_ID
letta skills delete <skill-name> --agent $AGENT_IDWhen using letta skills install, skills are placed in the agent's memfs at <memory-dir>/skills/<skill-name>/.
For manual installation:
| Location | Path | When to Use |
|---|---|---|
| Agent-scoped | ~/.letta/agents/<agent-id>/memory/skills/<skill>/ | Skills for a single agent (default) |
| Global | ~/.letta/skills/<skill>/ | General-purpose skills useful across projects |
| Project | .skills/<skill>/ | Project-specific skills |
Rule: Default to agent-scoped. Use project for repo-specific skills. Use global only if all agents should inherit the skill.
Skills are directories containing SKILL.md and optionally scripts/, references/, examples/.
# Clone, copy, cleanup
git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp
cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/agents/<agent-id>/memory/skills/
rm -rf /tmp/skills-tempAfter installing (via CLI or manual copy), skills are automatically discovered on the next message. Skills are discovered from ~/.letta/skills/, .skills/, and agent-scoped ~/.letta/agents/<agent-id>/memory/skills/ directories.
When looking for a skill to solve a user's problem:
hermes skills search <query> searches 88k+ skills across all registries. If Hermes CLI isn't available, browse the official optional-skills on GitHub (finance, mlops, blockchain, devops, research, creative, security, etc.).clawhub search or the web UI.SKILL.md files. Try github.com/letta-ai/skills and github.com/anthropics/skills first.User asks: "Can you help me track stock prices?"
letta skills install official/finance/stocks --agent $AGENT_IDSkill(skill: "stocks")User asks: "Can you generate images with Nano Banana Pro?"
letta skills install clawhub/nano-banana-pro --agent $AGENT_IDSkill(skill: "nano-banana-pro")051b47f
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.