Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/mohsenhariri/scorio/agents-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/agents-md)<a href="https://agentmods.dev/instructions/mohsenhariri/scorio/agents-md"><img src="https://agentmods.dev/badge/instructions/mohsenhariri/scorio/agents-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.02018 | $0.02018 |
| Opus 5 | $0.01009 | $0.01009 |
| Sonnet 5 | $0.00404 | $0.00404 |
| Haiku 4.5 | $0.00202 | $0.00202 |
Grade A, and why
scorio AGENTS.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 today.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- scorio CLAUDE.md — 97% identical, 4 lines differ
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.
AGENTS.md
This file provides guidance to coding agents 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.
- today First seen · 132 lines · 2,018 tokens per session scan A 78c613865cfb
scorio AGENTS.md is an instructions file published in the GitHub repository mohsenhariri/scorio (21 stars, last pushed 4d ago), licensed MIT. It adds 2,018 tokens to every session, about $0.0101 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other instructions, from other repositories
LightRAG AGENTS.md
AGENTS.md instructions for HKUDS/LightRAG, covering repository guidelines, project overview, project structure, module layout (lightrag/) and core architecture.
agentscope copilot-instructions.md
Copilot instructions for agentscope-ai/agentscope, covering agentscope code review guide, 1. code quality, 2. [must] code security, 3. [must] testing & dependencies and 4. code standards.
helicone CLAUDE.md
Claude Code instructions for Helicone/helicone, covering claude.md, project overview, core architecture, services and data flow.
evalscope AGENTS.md
AGENTS.md instructions for modelscope/evalscope, covering agents.md, setup, build, lint, test, docs generation and quick eval.
PentestGPT CLAUDE.md
Instructions for GreyDGL/PentestGPT, covering claude guide, active project map, runtime contract, commands and documentation map.
helicone AGENTS.md
AGENTS.md instructions for Helicone/helicone, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.