From 1df0c812c43ad2d6e50815fd50a26879fbb80128 Mon Sep 17 00:00:00 2001 From: yuanhe Date: Fri, 10 Apr 2026 18:54:27 -0700 Subject: [PATCH] feat(skills): add MiniMax-AI/cli as default skill tap Adds MiniMax-AI/cli to the default taps list so the mmx-cli skill is discoverable and installable out of the box via /skills browse and /skills install. The skill definition lives upstream at github.com/MiniMax-AI/cli/skill/SKILL.md, keeping updates decoupled. Co-Authored-By: Claude Opus 4.6 --- tools/skills_hub.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/skills_hub.py b/tools/skills_hub.py index 47aef8075..2b5216407 100644 --- a/tools/skills_hub.py +++ b/tools/skills_hub.py @@ -289,6 +289,7 @@ class GitHubSource(SkillSource): {"repo": "anthropics/skills", "path": "skills/"}, {"repo": "VoltAgent/awesome-agent-skills", "path": "skills/"}, {"repo": "garrytan/gstack", "path": ""}, + {"repo": "MiniMax-AI/cli", "path": "skill/"}, ] def __init__(self, auth: GitHubAuth, extra_taps: Optional[List[Dict]] = None):