feat(curator): add hermes curator usage — all-skills usage view - #36727
Merged
Conversation
Contributor
🔎 Lint report:
|
mxnstrexgl
approved these changes
Jun 1, 2026
mxnstrexgl
left a comment
There was a problem hiding this comment.
🤖 Automated PR Review
Security Scan
- ✓ No hardcoded secrets, injection sinks, unsafe deserialization, or dependency red flags found by this automated scan.
Code Quality
- ✓ No blocking code-quality issues found by this automated scan.
Summary
Status: APPROVE — security findings: 0, quality suggestions: 0.
Automated review; raw diff content intentionally omitted.
Surfaces the usage_report()/provenance() data layer added in #36701 as a user-facing CLI command. Unlike `hermes curator status` (scoped to curator-managed agent-created candidates), `usage` lists every skill on disk — bundled built-ins and hub-installed included — with per-skill use/view/patch counts and an agent/bundled/hub provenance tag. Flags: --sort {activity,recent,name}, --provenance {agent,bundled,hub} filter, --json for machine-readable output.
teknium1
force-pushed
the
hermes/curator-usage-cli
branch
from
July 6, 2026 11:51
762b681 to
21a78b0
Compare
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
Adds
hermes curator usage— the user-facing surface for the all-skills usage telemetry shipped in #36701.hermes curator statusis curator-scoped: it only shows agent-created candidates. This new command lists every skill on disk — bundled built-ins and hub-installed included — so you can see how often each is actually used, independent of whether it's ever curated.Command
use / view / patch / actbreakdown and anagent/bundled/hubprovenance tag per row.--provenancefilters to one origin;--sort recentorders by last activity;--jsonemits the fullusage_report()payload for scripting.skills: N total (agent=… bundled=… hub=…).Why
#36701 decoupled telemetry from curation (every skill now accrues usage counts) and added
usage_report()+provenance()as a data layer, but left no way to view it. This closes that loop.Validation
6 new tests (
test_curator_usage.py): lists all provenances, activity-sort ordering,--provenancefilter,--jsonshape, empty case, and argparse registration. Plus existingtest_curator_status+test_skill_usagesuites pass (53 total green). Wiring confirmed live:register_cliresolvesusage→_cmd_usage.Infographic