ClawHub Publisher Stats
Use this skill when the user wants marketplace data for a ClawHub publisher.
Common trigger phrases:
- - 查某个用户发布了哪些 skill
- 查作者数据 / 查发布者数据
- 看某个 ClawHub 用户的安装量、下载量、星标
- 统计这个作者的 skills 表现
- 分析这个发布者的 marketplace performance
- fetch ClawHub publisher stats
- show this creator's skills and metrics
- get install/download/star counts for an author's skills
Workflow
- 1. Run the bundled script:
CODEBLOCK0
- 2. Use
--include-skill-pages when the user needs per-skill install counts or comment counts:
CODEBLOCK1
- 3. Use
--format json when the user wants machine-readable output.
Output Rules
- - Always report the author aggregate block first when available:
- rank
- published skill count
- total downloads
- total stars
- - Then report per-skill metrics for the returned skills.
- Call out source limitations explicitly:
- the searchable API may return fewer skills than the aggregate author total
- ClawHub public pages expose stars and comments, but may not expose a separate user rating field
- - If skill-page fetches fail for some rows, keep the search API values and mark install/comment fields as unavailable.
Notes
- - Data is fetched live from public pages on each run.
- The script filters results to the exact publisher handle to avoid mixed search matches.
- Read
references/sources.md only if you need to explain where the numbers come from.
ClawHub 发布者统计
当用户需要获取 ClawHub 发布者的市场数据时,使用此技能。
常见触发短语:
- - 查某个用户发布了哪些 skill
- 查作者数据 / 查发布者数据
- 看某个 ClawHub 用户的安装量、下载量、星标
- 统计这个作者的 skills 表现
- 分析这个发布者的 marketplace performance
- fetch ClawHub publisher stats
- show this creators skills and metrics
- get install/download/star counts for an authors skills
工作流程
- 1. 运行捆绑脚本:
bash
python3 skills/clawhub-publisher-stats/scripts/fetchclawhubpublisher_stats.py --user --limit 20 --format markdown
- 2. 当用户需要每个技能的安装量或评论数时,使用 --include-skill-pages:
bash
python3 skills/clawhub-publisher-stats/scripts/fetchclawhubpublisher_stats.py --user --limit 20 --include-skill-pages --format markdown
- 3. 当用户需要机器可读的输出时,使用 --format json。
输出规则
- 排名
- 已发布技能数量
- 总下载量
- 总星标数
- - 然后显示返回技能的每个技能指标。
- 明确说明数据源限制:
- 可搜索的 API 返回的技能数量可能少于作者汇总总数
- ClawHub 公开页面显示星标和评论,但可能不显示单独的用户评分字段
- - 如果某些行的技能页面获取失败,则保留搜索 API 的值,并将安装/评论字段标记为不可用。
备注
- - 每次运行时,数据均从公开页面实时获取。
- 脚本将结果过滤为精确的发布者句柄,以避免搜索结果混杂。
- 仅在需要解释数据来源时,阅读 references/sources.md。