mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-30 01:41:43 +00:00
fix(skills): distinguish local skills from builtin in 'skills list'
Use _read_manifest() to identify true bundled skills. Non-hub, non-builtin skills are now labeled 'local' instead of 'builtin'. Adds --source local filter and updates summary counts. Cherry-picked from PR #869 by Jah-yee. Fixes #861 Co-authored-by: OpenClaw <openclaw@sparklab.ai>
This commit is contained in:
parent
2e4ccbc806
commit
effb44e4bd
2 changed files with 17 additions and 6 deletions
|
|
@ -2278,7 +2278,7 @@ For more help on a command:
|
|||
skills_inspect.add_argument("identifier", help="Skill identifier")
|
||||
|
||||
skills_list = skills_subparsers.add_parser("list", help="List installed skills")
|
||||
skills_list.add_argument("--source", default="all", choices=["all", "hub", "builtin"])
|
||||
skills_list.add_argument("--source", default="all", choices=["all", "hub", "builtin", "local"])
|
||||
|
||||
skills_audit = skills_subparsers.add_parser("audit", help="Re-scan installed hub skills")
|
||||
skills_audit.add_argument("name", nargs="?", help="Specific skill to audit (default: all)")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue