QuantRL-Lab AGENTS.md

QuantRL-Lab AGENTS.md is an instructions file for Codex, OpenCode from whanyu1212/QuantRL-Lab. It costs 3,951 tokens per session, scanned A, original, MIT.

Instructions for AI agents working in a quantitative research project, including its commands, Python package management, testing, and code-quality checks. The project uses uv to manage dependencies and environments.

In plain words
What is it for?
Setting up the project, running unit or integration tests, checking coverage, selecting tests by name, and running pre-commit checks.
Why use it?
They give agents consistent commands for installing the right optional packages and checking changes before they are committed.

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/whanyu1212/quantrl-lab/agents-md
Clone the repo
git clone --depth 1 https://github.com/whanyu1212/QuantRL-Lab

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 QuantRL-Lab AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/whanyu1212/quantrl-lab/agents-md.svg)](https://agentmods.dev/instructions/whanyu1212/quantrl-lab/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/whanyu1212/quantrl-lab/agents-md"><img src="https://agentmods.dev/badge/instructions/whanyu1212/quantrl-lab/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,951 This file is loaded in full into every session.
When invoked 3,951 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.03951 $0.03951
Opus 5 $0.01975 $0.01975
Sonnet 5 $0.00790 $0.00790
Haiku 4.5 $0.00395 $0.00395

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

Security

Grade A, and why

QuantRL-Lab 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 · 372 lines

How it starts

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

AGENTS.md

This file provides guidance to agents (i.e., ADAL) when working with code in this repository.

Essential Commands

Package Management

This project uses uv (not Poetry). The lock file is uv.lock.

uv sync                                    # Core deps only
uv sync --extra dev --extra notebooks      # With dev/notebook extras
uv sync --all-extras                       # All optional features
source .venv/bin/activate

Optional dependency groups: dev, notebooks, ml (torch/transformers/litellm), tuning, viz, storage, full.

Testing

uv run pytest -m "not integration"         # Unit tests only (CI/CD - no API keys needed)
uv run pytest -m integration               # Integration tests (requires .env with API keys)
uv run pytest tests/data/test_indicators.py  # Specific test file
uv run pytest -k "test_portfolio"          # Tests matching pattern
uv run pytest --cov=quantrl_lab            # With coverage

Code Quality (Pre-commit Hooks)

Pre-commit hooks run automatically on git commit. Run manually with:

pre-commit install                         # One-time setup
pre-commit run --all-files
pre-commit run --files path/to/file.py     # Before committing changes

Hook configuration (.pre-commit-config.yaml):

  • Black: --line-length=120 --skip-string-normalization
  • isort: --profile black
  • flake8: --max-line-length=120
  • docformatter: Google-style, --wrap-summaries=72

CRITICAL: Always verify pre-commit hooks pass after making changes. Common failures: unused imports (flake8), line length violations, missing/malformed docstrings.

Documentation

uv run mkdocs serve    # Local preview
uv run mkdocs build    # Build (always run before committing API changes)

When renaming modules or changing public APIs, update docs/api-reference/ to match actual module paths and run mkdocs build to verify.

Standalone guide tabs (top-level nav, each a self-contained reference):

  • docs/DATA_SOURCES.md — data loaders, capability matrix, usage per source
  • docs/data-processing.mdDataProcessor and DataPipeline with all 7 pipeline steps
  • docs/environments.md — action/observation/reward spaces, all reward strategies, full env example
  • docs/experiments.mdBacktestRunner, ExperimentJob, JobGenerator, AgentExplainer, OptunaRunner

Read the full file on GitHub · 372 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 · 372 lines · 3,951 tokens per session scan A 2614ee489158

Subscribe to this mod's changes

QuantRL-Lab AGENTS.md is an instructions file published in the GitHub repository whanyu1212/QuantRL-Lab (53 stars, last pushed 4mo ago), licensed MIT. It adds 3,951 tokens to every session, about $0.0198 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.

Related

Other instructions, from other repositories

kite-mcp-server CLAUDE.md

Claude Code instructions for Sundeepg98/kite-mcp-server, covering claude.md - kite mcp server, what it is, branch / repo, commands and deploy the hosted app (manual).

Sundeepg98/kite-mcp-server · 2,315 tokens

transformers copilot-instructions.md

Instructions for huggingface/transformers, covering copilot-instructions.md guide for hugging face transformers, core project structure, coding conventions for hugging face transformers, copying and inheritance and testing.

huggingface/transformers · 773 tokens

AReaL AGENTS.md

AGENTS.md instructions for areal-project/AReaL, covering agents.md -- areal agent operations guide, quick reference, environment, tests and cli docs.

areal-project/AReaL · 2,812 tokens

Vibe-Research AGENTS.md

AGENTS.md instructions for simonlin1212/Vibe-Research, covering vibe-research-agent 金融研究宪法, 0. 三条不可越线, 1. 数据纪律(五问 gate:给出任何数字或结论前逐条自问), 2. 研究哲学(评估框架,不是预测工具) and 3. 估值口径(你只选输入、解释输出;计算交给 calc/).

simonlin1212/Vibe-Research · 4,469 tokens

Kokoro-FastAPI AGENTS.md

AGENTS.md instructions for remsky/Kokoro-FastAPI, covering agents.md, layout, commands, conventions and gotchas.

remsky/Kokoro-FastAPI · 822 tokens

baba-is-auto AGENTS.md

AGENTS.md instructions for utilForever/baba-is-auto, covering agents.md, what this repository is, golden rules (read before any change), the most common task: changing simulator behavior and repository map.

utilForever/baba-is-auto · 1,680 tokens