fix(cli): prioritize plugin commands above skills in Telegram menu - #33706
Closed
Linux2010 wants to merge 1 commit into
Closed
fix(cli): prioritize plugin commands above skills in Telegram menu#33706Linux2010 wants to merge 1 commit into
Linux2010 wants to merge 1 commit into
Conversation
Plugin slash commands were being truncated by the 30-command cap because they received the same priority (1) as skill commands. When total commands exceeded 30, plugins were pushed out along with skills, making user-installed plugins invisible in the menu. Fix: Give plugin commands middle priority (1) in `_prioritize_telegram_menu_commands`, above skills (priority 2) but below core built-in commands (priority 0). Now the priority order is: 1. Core built-in commands (highest) — always visible 2. Plugin commands — visible when slots remain after core 3. Skill commands — fill remaining slots Fixes NousResearch#33480
Linux2010
force-pushed
the
fix/telegram-command-cap-plugins-33480
branch
from
May 28, 2026 06:44
157ebba to
01643ea
Compare
Collaborator
19 tasks
Contributor
|
Thanks for the focused Telegram-menu fix. Automated hermes-sweeper review found the requested behavior is already implemented on current
This also supersedes the competing-priority context noted in the earlier discussion and PR #42021. Closing as implemented on main. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #33480 — Plugin slash commands were invisible in Telegram's command menu due to being truncated by the 30-command cap alongside skill commands.
Problem
_prioritize_telegram_menu_commandsgave plugin commands priority 1 (same as skills)/autocomplete menuFix
Modified
_prioritize_telegram_menu_commandsto give plugin commands middle priority:/new,/help,/status, etc.) — always visibleTesting
Before: Plugin commands truncated at cap, invisible in menu
After: Plugin commands survive cap, appear before skills in menu
🤖 Generated with Claude Code