feat(skills): add skill group organization (#76830) - #77580
Open
TCK0423 wants to merge 2 commits into
Open
Conversation
With 60+ skills installed, 'hermes skills list' is a flat list that gets hard to navigate. This adds named skill groups: - hermes skills group add <group> <skill> [skill ...] — create a group and associate skills with it (dedupes, warns about skills that are not currently installed) - hermes skills group remove <group> [skill ...] — remove skills from a group, or delete the whole group (rm alias) - hermes skills group list (ls) — show groups and members, --json for scripting - hermes skills list --group <name> — filter the installed-skills table to a group; unknown groups print an error listing available groups Groups are stored in config.yaml under skills.groups (group name -> list of skill names), consistent with how skills.disabled is persisted. They are purely organizational and do not change how skills load. Also wires --group through the /skills list slash command. Closes NousResearch#76830
… /skills list Cherry-picks webtecnica's PR NousResearch#76985 (skill group organization) and fixes the two blocking slash-command parser issues: - /skills list --group (no value) now prints an error instead of listing unfiltered - /skills list --group --source hub now rejects the flag-like value instead of consuming --source as the group name Includes the full NousResearch#76985 feature set: skills.groups config, hermes skills group add/remove/list, and --group filter on hermes skills list. Co-authored-by: webtecnica <webtecnica@gmail.com>
Collaborator
Related to #76985. Both implement config-backed skill groups; this branch adds focused slash-command handling for missing and flag-like --group values, so maintainers should consolidate rather than treat it as redundant. |
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
Cherry-picks webtecnica's PR #76985 and fixes the two blocking slash-command parser issues.
With 60+ skills installed,
hermes skills listis a flat list that gets hard to navigate. This PR adds named skill groups:hermes skills group add <group> <skill> [skill ...]— create a grouphermes skills group remove <group> [skill ...]— remove skills or delete grouphermes skills group list— show all groups (--json for scripting)hermes skills list --group <name>— filter to a group/skills list --group <name>— same filter in slash commandGroups are stored in
config.yamlunderskills.groups(group name → list of skill names), consistent withskills.disabled.Fixes vs original PR #76985
/skills list --group(no value) now prints an error + available groups/skills list --group --source hubnow rejects flag-like valueVerification
Co-authored-by: webtecnica webtecnica@gmail.com