From worldjen
Fetch the public WorldJen leaderboard. Use when the user wants model rankings, available evaluation dimensions, or a comparison of top entries. No auth required.
How this skill is triggered — by the user, by Claude, or both
Slash command
/worldjen:worldjen-leaderboardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Best-effort update check. Fails silently on network errors or non-marketplace installs. If output starts with `UPGRADE_AVAILABLE` or `JUST_UPGRADED`, surface it once to the user and continue with the skill workflow.
Best-effort update check. Fails silently on network errors or non-marketplace installs. If output starts with UPGRADE_AVAILABLE or JUST_UPGRADED, surface it once to the user and continue with the skill workflow.
{
for _p in \
"$HOME/.claude/plugins/marketplaces/worldjen/bin/check-update" \
"$HOME/.codex/.tmp/plugins/plugins/worldjen/bin/check-update"; do
if [ -x "$_p" ]; then "$_p" 2>/dev/null && break; fi
done
} 2>/dev/null || true
Fetch the public leaderboard. No authentication required.
curl -fsSL "https://www.worldjen.com/api/v1/public/leaderboard"
The response is JSON with at least:
{
"entries": [],
"availableDimensions": []
}
The endpoint does not currently accept query filters. If the user wants to compare specific models or dimensions, fetch the full leaderboard and filter client-side (e.g. with jq).
worldjen-install — install the SDK and CLI for richer programmatic accessworldjen-bench — benchmark a whole model (every leaderboard row is a full Bench run)worldjen-score — score the clip you just generatedworldjen-rank — quick personal preview vs the standard rank setworldjen-runner — set up a GPU worker hostnpx claudepluginhub moonmath-ai/worldjen-skills --plugin worldjenProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.