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/loonghao/rez-next/claude-mdgit clone --depth 1 https://github.com/loonghao/rez-nextWrote 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/loonghao/rez-next/claude-md)<a href="https://agentmods.dev/instructions/loonghao/rez-next/claude-md"><img src="https://agentmods.dev/badge/instructions/loonghao/rez-next/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.00933 | $0.00933 |
| Opus 5 | $0.00466 | $0.00466 |
| Sonnet 5 | $0.00187 | $0.00187 |
| Haiku 4.5 | $0.00093 | $0.00093 |
Grade A, and why
rez-next 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 3d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- rez-next GEMINI.md — 89% identical, 24 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.
CLAUDE.md - Anthropic Claude Guidance for rez-next
Important: This file references AGENTS.md for core project information. Read that file first.
For Anthropic Claude Agents
When working with the rez-next project, follow this guidance:
1. Start Here
Read AGENTS.md to understand:
- Project structure and architecture
- Available Python modules and their Rez equivalents
- Development workflow (build, test, lint)
- Common tasks and how to approach them
2. Key Principles
- Progressive disclosure: AGENTS.md → llms.txt (concise) → llms-full.txt (full API) → docs/ (human guides)
- Check coverage: Not all Rez APIs are implemented; verify before suggesting code
- Use vx: Tool management via
vx(seevx.toml) - Run CI early:
vx just cibefore submitting changes
3. Python Code Patterns
# ✅ Correct: Use rez_next as drop-in
import rez_next as rez
from rez_next.packages_ import get_latest_package
# ❌ Avoid: Direct rez imports (won't work with rez-next)
import rez
4. Rust Code Patterns
// ✅ Correct: Use the crate structure
use rez_next_version::Version;
use rez_next_package::Package;
// ❌ Avoid: Direct std types when crate types exist
5. Documentation Updates
When updating documentation:
- Update AGENTS.md (project map) if structure changes
- Update llms.txt (AI-friendly concise index) if submodule list changes
- Update llms-full.txt (complete API reference) for new APIs
- Update docs/*.md (human guides) for workflow changes
- Update README.md / README_zh.md for user-facing changes
6. Commit Messages
Follow Conventional Commits:
feat: add new solver heuristic
fix(solver): handle cyclic dependencies
docs: update AGENTS.md with new module
chore: upgrade dependencies
7. Testing Strategy
# Always run tests before submitting
vx just test
# Run specific tests
vx cargo test --package rez-next-solver
# Run Python tests
maturin develop --release && pytest
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.
- 3d ago First seen · 132 lines · 933 tokens per session scan A 1962805baf6a
rez-next CLAUDE.md is an instructions file published in the GitHub repository loonghao/rez-next (25 stars, last pushed 2d ago), licensed Apache-2.0. It adds 933 tokens to every session, about $0.0047 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-02.
Other instructions, from other repositories
apm python.instructions.md
Python development guidelines.
technocore-chat AGENTS.md
AGENTS.md instructions for flop-labs/technocore-chat: CI runs exactly these — run them before pushing.
foundry-local python-cffi-pointer-types.instructions.md
Use when working on the Python SDK's native bindings (cffi), especially when defining new Item subclasses, working with flItemQueue, or extending Request/Session methods that pass native handles.
haggle AGENTS.md
AGENTS.md instructions for NaanyaBiz/haggle, covering agents.md — haggle integration guide, dev loop, install deps (once, or after pyproject.toml changes), run tests and lint + format.
pydantic-ai-gepa AGENTS.md
AGENTS.md instructions for indexedlabs/pydantic-ai-gepa, covering repository guidelines, mighty workflow, project structure & module organization, build, test, and development commands and coding style & naming conventions.
genmedia-izumi-agent GEMINI.md
Gemini CLI instructions for GoogleCloudPlatform/genmedia-izumi-agent.