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/duskyelf/prep-jee/agents-mdgit clone --depth 1 https://github.com/DuskyElf/prep-jeeWhat 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 | $0.09134 | $0.09134 |
| Opus 5 | $0.04567 | $0.04567 |
| Sonnet 5 | $0.01827 | $0.01827 |
| Haiku 4.5 | $0.00913 | $0.00913 |
Grade A, and why
prep-jee 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 654 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file is the single source of project wisdom. Make sure to keep this up to date with the project.
What this is
Client-side web app: upload a JEE Test PDF + Solution PDF → extracts questions & answer key → interactive quiz → grading with solution pages.
Target user: JEE (Joint Entrance Exam) aspirants practicing with weekly test PDFs from coaching institutes (e.g., PW Arjuna, Allen, Aakash). The app runs entirely in the browser — no server, no uploads to external services.
Constraints: Fully client-side. pdf.js from npm (pdfjs-dist) bundled via Vite. PDF text extraction via getTextContent() — no OCR. Deployed to Cloudflare Pages.
Core workflow
- Upload — Two separate drop zones (Test PDF / Solution PDF). User explicitly picks which is which. No auto-detection.
- Parse — pdf.js
getTextContent()→reconstructLines()(content-stream order, no y-sort) → text → parsers. - Quiz — One question at a time. Controls adapt to type (radio/checkbox/text input). Navigator popup (🔍 Jump button or
/key) for jumping between questions. State managed by SolidJScreateStoreinstore.ts. - Results — Score with per-question breakdown. Linked solution pages from the solution PDF. Resume banner on reload via localStorage.
Entry point: src/index.tsx renders <App /> into <div id="root">. All screens routed via <Show when={state.screen === '...'}> within App.tsx — no router library.
Features (all ✅ done)
- Quiz countdown timer — Duration parsed from the test PDF's first page (looks for
DURATION : 180 Minutespattern). Uses absolute timestamp (startedAt) stored in localStorage, so the timer survives page refreshes. Auto-submits when time runs out. Warning color at <5 min, critical at <1 min. Displayed on both quiz and results screens. - Two upload sections — Two explicit drop zones, each with its own file input. Validation compares
questions.lengthvsObject.keys(answers).length, throws error with exact counts on mismatch. - 2D page cropping — Each question shows only its portion of the PDF page, cropped on both x and y.
reconstructLines()tracks{ minY, maxY, minX, maxX }per line. Falls back: no bbox → full page, no x-bounds → y-only crop. - Multi-column span notice — Amber notice when a question's x-range covers >55% of the page content width (text in one column, options in another).
- Question navigator — Pop-up grid via "🔍 Jump" button or
/key. Green border = answered, purple+glow = current. 1-9 jumps, Escape closes. - Resume from localStorage —
userAnswers+currentQsaved per PDF filename pair. Validates saved qnums match current question set on reload. - Debug panel — Raw extracted text for first 3 pages. Console debug dump with full question/answer/userAnswer/solutionPageMap data.
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.
- yesterday First seen · 654 lines · 9,134 tokens per session scan A 6a36bec9578c
prep-jee AGENTS.md is an instructions file published in the GitHub repository DuskyElf/prep-jee (5 stars, last pushed 1mo ago), licensed Unlicense. It adds 9,134 tokens to every session, about $0.0457 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-31.
Other instructions, from other repositories
n8n-skills CLAUDE.md
Instructions for czlonkowski/n8n-skills, covering claude.md, project overview, repository structure, the 14 skills and 1. n8n expression syntax.
Tutorial_AwesomeModernCPP AGENTS.md
Instructions for Awesome-Embedded-Learning-Studio/Tutorial_AwesomeModernCPP, covering agents.md, 这是什么, 通用 essentials(所有 agent 必读) and 你来做什么?(按场景路由).
python-cheatsheet copilot-instructions.md
Copilot instructions for labex-labs/python-cheatsheet, covering python cheatsheet - ai coding assistant instructions, project overview, architecture & key patterns, content structure and routing & layout system.
fix-quera AGENTS.md
Instructions for AlirezaKeshavarz83/fix-quera, covering agent guidance, project shape, visual style, quera page data findings and compatibility findings.
ab900 CLAUDE.md
Instructions for timothywarner-org/ab900, covering claude.md, repository purpose, architecture, commands and 2. non-ascii punctuation -- must return zero.
agentconfig.org AGENTS.md
Instructions for agentconfig/agentconfig.org, covering agent instructions for agentconfig.org, project overview, target audience, site structure and tech stack.