Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

parameter-golf-monitor参数高尔夫监视器

Agent Skill

parameter-golf-monitor 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,573

周安装

185

GitHub Stars

公开资料未说明

下载量

1,436
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:parameter-golf-monitor(参数高尔夫监视器)
来源仓库:https://github.com/dexhunter/parameter-golf-monitor
安装命令:
openclaw skills install parameter-golf-monitor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install parameter-golf-monitor

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于监控 openai/parameter-golf 竞赛排行榜,通过 GitHub PR 数据获取最新排名。
  • 通过 clawhub 安装,结合来源仓库和原始 README 核验具体用法,支持竞赛数据查询。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前主要用于效率类任务,需配合具体竞赛需求使用。

SKILL.md

name
parameter-golf-monitor
description
>

Parameter Golf Monitor

A skill for tracking the openai/parameter-golf competition leaderboard in real time by fetching open and merged PRs from GitHub's public API.

What this skill does

The monitor script at scripts/monitor.py queries the GitHub API for PRs on openai/parameter-golf, extracts val_bpb scores from titles and bodies, classifies submissions (record vs non-record), and displays a ranked leaderboard table.

It requires zero authentication — it uses the unauthenticated GitHub API (60 requests/hour rate limit).

When to use this skill

  • User asks "what's the current leaderboard?" or "who's winning parameter golf?"
  • User wants to check their ranking: "where do I stand?" or "how's my PR doing?"
  • User asks about competitor scores or techniques
  • User wants to monitor for new submissions or changes
  • User says "check the competition" or "show me the standings"
  • User wants to compare their score against the field

How to run

The script is at scripts/monitor.py relative to this skill's directory. Run it with Python 3 (no dependencies beyond stdlib).

One-shot leaderboard

python3 <skill-dir>/scripts/monitor.py

Shows all open PRs ranked by val_bpb (lower is better).

Highlight a specific user

python3 <skill-dir>/scripts/monitor.py --me <github-username>

Marks the user's PR(s) with <-- and shows their rank + gap to #1 in the summary. Ask the user for their GitHub username if they want highlighting and you don't already know it.

Common flag combinations

GoalCommand
Full leaderboardpython3 scripts/monitor.py
Top 10 records onlypython3 scripts/monitor.py --top 10 --records-only
Highlight a userpython3 scripts/monitor.py --me USERNAME
Merged records (SOTA history)python3 scripts/monitor.py --merged
Everything (open + merged)python3 scripts/monitor.py --all
Today's PRs onlypython3 scripts/monitor.py --since YYYY-MM-DD
JSON for pipingpython3 scripts/monitor.py --json
Live polling every 5 minpython3 scripts/monitor.py --watch 5

All flags

  • --me USER — Highlight a GitHub username. Shows rank and gap to #1.
  • --top N — Show only the top N scored entries (highlighted user always shown even if outside top N).
  • --records-only — Exclude non-record submissions.
  • --merged — Show only merged PRs.
  • --all — Show both open and merged PRs.
  • --since YYYY-MM-DD — Filter to PRs created on or after this date.
  • --json — Output as JSON instead of a table (useful for piping to jq or other tools).
  • --watch MIN — Poll every N minutes continuously (Ctrl+C to stop).

Interpreting results

  • Rank is by val_bpb ascending (lower = better). Only scored PRs get a numeric rank.
  • Status shows open, merged, or non-rec (non-record submission).
  • Scores marked ? mean no val_bpb could be extracted from the PR title or body.
  • Some very low scores (e.g. < 1.10) may be evaluation-only or use non-standard setups — check the PR for details.
  • The gap to #1 in the summary tells the highlighted user how far they are from the top.

Rate limits

The GitHub API allows 60 unauthenticated requests per hour. Each run_once call makes 1 request (open PRs) or 2 requests (if --merged or --all). The --watch mode respects this — polling every 5 minutes uses ~12-24 requests/hour.

If you hit the rate limit, the script will show an error and retry on the next interval.

Example output

[2026-03-20 02:17:15] Parameter Golf Leaderboard (open PRs)

Rank   val_bpb     PR  Status    Author              Date        Title
----------------------------------------------------------------------------------------------------
   1   1.15390  #135   open      unnir               2026-03-19  Record: OrthoInit + Int6 MLP3x + BigramHash + SmearGate
   2   1.15800  #106   open      krammnic            2026-03-19  record: 1.158
   3   1.15850  #122   open      mtybadger           2026-03-19  Record: Sliding Window Eval, 2048 Vocab Size
   4   1.16019  #156   open      dexhunter           2026-03-20  Int6 STE + NorMuon + SWA + Sliding Window  <--

Best: val_bpb=1.15390 (#135 by unnir)
Total: 56 PRs, 40 with scores

You (dexhunter): rank #4, val_bpb=1.16019, gap to #1: +0.00629

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.29%
按下载量换算1,225

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills