Borrowing it
Nothing to install: this file belongs to mohsenhariri/scorio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/mohsenhariri/scorio/main/CLAUDE.mdgit clone --depth 1 https://github.com/mohsenhariri/scorioWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/mohsenhariri/scorio/claude-md)<a href="https://agentmods.dev/instructions/mohsenhariri/scorio/claude-md"><img src="https://agentmods.dev/badge/instructions/mohsenhariri/scorio/claude-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.02026 | $0.02026 |
| Opus 5 | $0.01013 | $0.01013 |
| Sonnet 5 | $0.00405 | $0.00405 |
| Haiku 4.5 | $0.00203 | $0.00203 |
Grade A, and why
scorio CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
97% identical to scorio AGENTS.md — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Overview
Scorio is a research toolkit for Bayesian evaluation and ranking of LLMs (especially reasoning models under test-time scaling / repeated sampling). It backs three papers (ICLR 2026, ACL 2026, an arXiv preprint on test-time scaling) and ships companion HuggingFace datasets of reasoning traces (notebooks/datasets/{trace,lite,math,gpqa}).
The repo contains three parallel implementations of the same API, kept in version lockstep via the root VERSION file and scripts/sync_version.py:
scorio/— Python, the reference implementation (published to PyPI)julia/Scorio.jl/— Julia, mirrors the Pythoneval/rank/aggregate/sinf/utilsAPI (registered in the Julia General Registry)js/scorio/— TypeScript, zero-dependency port (npm), currently centered on theevalAPIs
When changing the public API or fixing a bug in one implementation, check whether the equivalent should also change in the others.
Common commands
All commands below run from the repo root unless noted; see the root Makefile for the authoritative list.
Python (scorio/)
pip install -e ".[dev]" # install with dev deps (pytest, ruff, mypy, sphinx...)
make test # pytest tests/
pytest tests/eval # a single test dir
pytest tests/rank -m "not slow" # rank tests excluding slow ones (make test-rank-py)
pytest tests/rank -m slow # slow rank tests only (make test-rank-py-slow)
pytest tests/eval/test_bayes.py::test_name -v # a single test
make format-check # ruff format --check + ruff check
make format # ruff format + ruff check --fix
make lint # ruff check + mypy
make py-docs-build # Sphinx docs -> docs/_build/html
make py-docs-serve # serve built docs on :4000
Pytest marker slow is registered in pyproject.toml for heavy ranking APIs — use it on any new test that's expensive (MCMC, MILP solvers, etc.).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 132 lines · 2,026 tokens per session scan A d118a32ba7cc
scorio CLAUDE.md is an instructions file published in the GitHub repository mohsenhariri/scorio (21 stars, last pushed 6d ago), licensed MIT. It adds 2,026 tokens to every session, about $0.0101 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to scorio AGENTS.md, differing in 4 lines, and is treated as a copy.
Other instructions, from other repositories
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.