mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-21 05:11:26 +00:00
feat(skills-hub): add huggingface/skills as trusted default tap (#2549)
Adds Hugging Face's official skill catalog to the default GitHub taps and classifies it as a trusted source alongside openai/skills and anthropics/skills. - tools/skills_guard.py: huggingface/skills -> TRUSTED_REPOS - tools/skills_hub.py: GitHubSource.DEFAULT_TAPS += huggingface/skills (skills/) - website/docs: list it under default taps + trusted-source examples Closes #2549. Co-authored-by: teknium1 <127238744+teknium1@users.noreply.github.com>
This commit is contained in:
parent
0086cdaf93
commit
e0e4856d46
4 changed files with 5 additions and 3 deletions
|
|
@ -36,7 +36,7 @@ from typing import List, Tuple
|
|||
# Hardcoded trust configuration
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
TRUSTED_REPOS = {"openai/skills", "anthropics/skills"}
|
||||
TRUSTED_REPOS = {"openai/skills", "anthropics/skills", "huggingface/skills"}
|
||||
|
||||
INSTALL_POLICY = {
|
||||
# safe caution dangerous
|
||||
|
|
|
|||
|
|
@ -329,6 +329,7 @@ class GitHubSource(SkillSource):
|
|||
DEFAULT_TAPS = [
|
||||
{"repo": "openai/skills", "path": "skills/"},
|
||||
{"repo": "anthropics/skills", "path": "skills/"},
|
||||
{"repo": "huggingface/skills", "path": "skills/"},
|
||||
{"repo": "VoltAgent/awesome-agent-skills", "path": "skills/"},
|
||||
{"repo": "garrytan/gstack", "path": ""},
|
||||
{"repo": "MiniMax-AI/cli", "path": "skill/"},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue