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/aisa-group/posttrainbench/agents-mdgit clone --depth 1 https://github.com/aisa-group/PostTrainBenchWhat 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.05303 | $0.05303 |
| Opus 5 | $0.02652 | $0.02652 |
| Sonnet 5 | $0.01061 | $0.01061 |
| Haiku 4.5 | $0.00530 | $0.00530 |
Grade D, and why
PostTrainBench AGENTS.md scanned grade D with 3 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 2d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
chmod 600 agents/cursor_cli/cursor_auth.json Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsS https://cursor.com/install | bash # installs to ~/.local/bin/{agent,cursor-agent} Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
via the official curl installer (`cursor.com/install`, drops `agent` + `cursor-agent` symlinks in How it starts
The opening of the file, as written. The whole thing — 342 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidelines for AI agents working on the PostTrainBench codebase.
Project Overview
PostTrainBench is a benchmark framework that measures AI agents' ability to perform LLM post-training - improving pre-trained small language models on specific benchmarks through automated research. Agents are typically given 10 hours on an H100 GPU to improve base models, with performance measured by benchmark scores.
Directory Structure
PostTrainBench/
├── agents/ # Agent implementations (claude, codex, gemini, opencode, qwen3max, glm5, ...)
├── cluster/ # Cluster-specific helper artifacts
├── containers/ # Apptainer/Singularity container definitions and helpers
├── dev_utils/ # Development/debugging utilities (run failure triage, trace extraction, ...)
├── scripts/ # Result aggregation and analysis
├── src/
│ ├── baselines/ # Baseline score computation
│ ├── commit_utils/ # HTCondor job submission utilities (incl. set_env_vars.sh)
│ ├── judges/ # Reward-hacking judges (one folder per judge; see Safety)
│ ├── eval/
│ │ ├── general/ # Prompt generation (get_prompt.py, prompt.txt)
│ │ ├── tasks/ # Evaluation benchmarks (aime2025, aime2026, gsm8k, ...)
│ │ └── templates/ # Chat templates (Jinja2)
│ ├── trace_parsing/ # Per-agent trace parsers (claude/codex/gemini/opencode)
│ ├── utils/ # Utility scripts (check_cuda, system_monitor, timestamp_lines, ...)
│ └── run_task.sh # Main task execution orchestrator
└── results/ # Evaluation results storage (path controlled by POST_TRAIN_BENCH_RESULTS_DIR)
Key Files
| File | Purpose |
|---|---|
src/run_task.sh |
Main task execution orchestrator (runs agent, then 4 judges, then evaluation) |
src/commit_utils/commit.sh |
Batch job submission across agents × benchmarks × models |
src/commit_utils/set_env_vars.sh |
Sources .env and exports POST_TRAIN_BENCH_* env vars |
src/commit_utils/single_task.sub |
HTCondor submission template |
src/commit_utils/single_task_gemini.sub |
Gemini-specific HTCondor submission template |
src/eval/general/get_prompt.py |
Generates agent prompts |
src/eval/general/prompt.txt |
Agent prompt template |
src/trace_parsing/parse_trace.py |
Dispatches to per-agent parser to produce human-readable trace |
src/utils/update_agent_cli.sh |
Auto-updates an agent's CLI harness to latest and records its version |
src/judges/run_judges.sh |
Runs judges on an existing result dir (--judges to select a subset); each writes its own per-judge JSON |
src/judges/get_judge_prompt.py |
Generates judge prompts (--judge <judge_name>) |
containers/standard.def |
Main container definition (other .def files exist per-agent) |
scripts/constants.py |
Agent/benchmark mappings |
example.env |
Template for the .env file (API keys + POST_TRAIN_BENCH_* paths) |
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.
- 2d ago First seen · 342 lines · 5,303 tokens per session scan D e2e3c8e5fc32
PostTrainBench AGENTS.md is an instructions file published in the GitHub repository aisa-group/PostTrainBench (538 stars, last pushed 11d ago), licensed MIT. It adds 5,303 tokens to every session, about $0.0265 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
obsidian-mind CLAUDE.md
Claude Code instructions for breferrari/obsidian-mind, covering obsidian mind, skills & capabilities, custom slash commands, vault structure and obsidian cli.
obsidian-mind AGENTS.md
AGENTS.md instructions for breferrari/obsidian-mind, covering obsidian mind, hooks, commands, memory and reaching this vault from another repo.
TokenTracker AGENTS.md
AGENTS.md instructions for xiufengsun/TokenTracker, covering agent instructions and insforge backend.
parallel-code CLAUDE.md
Instructions for johannesjo/parallel-code, covering parallel code, stack, commands, project structure and conventions.
neo4j-skills AGENTS.md
Instructions for neo4j-contrib/neo4j-skills, covering writing skills for this repository, language style — write for agents, not humans, six design principles, skill.md spec (agentskills.io) and frontmatter.
ox AGENTS.md
Instructions for sageox/ox, covering human attention is the scarcest resource, what is ox?, quick start, terminology and required reviews.