prb-math AGENTS.md

prb-math AGENTS.md is an instructions file for Codex, OpenCode from PaulRBerg/prb-math. It costs 664 tokens per session, scanned A, original, MIT.

Developer instructions for PRBMath, a Solidity library for signed and unsigned fixed-point arithmetic with 18 decimal places. They describe its math types, source layout, tests, and build tools.

In plain words
What is it for?
Use them when modifying PRBMath code, adding tests, running Foundry builds and tests, checking formatting, or validating Solidity changes.
Why use it?
They give contributors the commands and structure needed to change the library without overlooking formatting, linting, tests, or both supported modes.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/paulrberg/prb-math/agents-md
Clone the repo
git clone --depth 1 https://github.com/PaulRBerg/prb-math

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for prb-math AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/paulrberg/prb-math/agents-md.svg)](https://agentmods.dev/instructions/paulrberg/prb-math/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/paulrberg/prb-math/agents-md"><img src="https://agentmods.dev/badge/instructions/paulrberg/prb-math/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 664 This file is loaded in full into every session.
When invoked 664 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00664 $0.00664
Opus 5 $0.00332 $0.00332
Sonnet 5 $0.00133 $0.00133
Haiku 4.5 $0.00066 $0.00066

Measured 4d ago against content hash 27145416dc38, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

prb-math 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 4d 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.

AGENTS.md · 75 lines

How it starts

The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PRBMath

Solidity library for advanced fixed-point math with signed (SD59x18) and unsigned (UD60x18) 18-decimal types.

Stack

  • Solidity 0.8.30
  • Foundry (forge build, forge test, forge fmt)
  • Bun for package management
  • Prettier, Solhint for formatting/linting

Structure

src/
  Common.sol          # Shared utilities (mulDiv, exp2, log2, pow, sqrt)
  SD59x18.sol         # Signed 59.18 fixed-point type (entry point)
  UD60x18.sol         # Unsigned 60.18 fixed-point type (entry point)
  SD1x18.sol, UD2x18.sol, SD21x18.sol, UD21x18.sol   # Compact/medium types
  sd59x18/, ud60x18/  # Core type ops (Casting, Constants, Helpers, Math, ValueType)
  sd1x18/, ud2x18/, sd21x18/, ud21x18/               # Compact/medium type dirs
  casting/            # Casting from uint40/uint128/uint256
test/
  unit/               # Unit tests
  fuzz/               # Fuzz tests
  utils/              # Assertions and test utilities

Commands

  • just build - Build with Forge
  • just test - Run tests (forge test)
  • just full-check - Prettier + Solhint + Forge format check
  • just full-write - Auto-fix all formatting issues

Development

After generating or updating code:

  1. Run just full-check to verify
  2. If errors, run just full-write to auto-fix
  3. Fix remaining issues manually

Install dependencies: bun install or bun install -d <pkg> for dev deps.

Code Style

  • Use user-defined value types (SD59x18, UD60x18) for type safety
  • Free functions over library pattern
  • Custom errors over require strings
  • NatSpec comments on public functions
  • Line length: 132 chars
  • 4-space tabs
  • Bracket spacing enabled

Fixed-Point Formats

Type Signed Integer Digits Decimals
SD59x18 Yes 59 18
UD60x18 No 60 18
SD1x18 Yes 1 18
UD2x18 No 2 18
SD21x18 Yes 21 18
UD21x18 No 21 18

Read the full file on GitHub · 75 lines

Changes

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.

  1. 4d ago First seen · 75 lines · 664 tokens per session scan A 27145416dc38

Subscribe to this mod's changes

prb-math AGENTS.md is an instructions file published in the GitHub repository PaulRBerg/prb-math (1,006 stars, last pushed 20d ago), licensed MIT. It adds 664 tokens to every session, about $0.0033 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-08-30.