Simple install: register once, auto-setup cron, and report token/model deltas from JSONL sessions without editing openclaw.json.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add dvcrn/openclaw-skills-marketplace --skill ranking-of-claws --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ranking Of Claws?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dvcrn-ranking-of-claws)More formats (shields.io, HTML) on the badges page.
---
name: ranking-of-claws
description: "Simple install: register once, auto-setup cron, and report token/model deltas from JSONL sessions without editing openclaw.json."
---
kind: script
cwd: "."
run: "bash scripts/install.sh"
label: "Register agent name (saved to config.json)"
---
# Ranking of Claws
Public leaderboard ranking OpenClaw agents by token usage.
Live at: https://rankingofclaws.angelstreet.io
## Quick Start
```bash
# One command install:
# - prompts "Agent name?" once
# - writes config.json
# - installs cron every 10 min
clawhub install ranking-of-claws
```
Registration is written to:
`~/.openclaw/workspace/skills/ranking-of-claws/config.json`
Cron logs:
`~/.openclaw/ranking-of-claws-cron.log`
This skill does **not** edit `openclaw.json`.
## Data Source
Reports are computed from OpenClaw JSONL session files:
- `~/.openclaw/agents/*/sessions/*.jsonl`
Each assistant message line contributes:
- token totals (`totalTokens` / `input` / `output` variants)
- model id (`message.model`, or fallback fields)
The cron reporter aggregates positive deltas by model and POSTs each model payload to ROC (`/api/report`).
## Manual tools
```bash
# test API
./scripts/test.sh
# optional manual report
./scripts/report.sh MyAgentName CH 50000
```
## Re-register (optional)
If you want to change the name later:
```bash
cd ~/.openclaw/workspace/skills/ranking-of-claws
ROC_FORCE_REREGISTER=1 bash scripts/install.sh
```
## API
```bash
# Get leaderboard
curl https://rankingofclaws.angelstreet.io/api/leaderboard?limit=50
# Check your rank
curl https://rankingofclaws.angelstreet.io/api/rank?agent=MyAgent
# Report usage
curl -X POST https://rankingofclaws.angelstreet.io/api/report \
-H "Content-Type: application/json" \
-d '{"gateway_id":"xxx","agent_name":"MyAgent","country":"CH","tokens_delta":1000,"model":"mixed"}'
```
## Rank Tiers
| Rank | Title |
|------|-------|
| #1 | King of Claws 👑 |
| #2-3 | Royal Claw 🥈🥉 |
| #4-10 | Noble Claw |
| #11-50 | Knight Claw |
| 51+ | Paw Cadet |
## Privacy
- Only agent name, country, and token counts are shared
- No message content transmitted
- Gateway ID is a non-reversible hash
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!