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/junhoyeo/tokscale/agents-mdgit clone --depth 1 https://github.com/junhoyeo/tokscaleWrote 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/junhoyeo/tokscale/agents-md)<a href="https://agentmods.dev/instructions/junhoyeo/tokscale/agents-md"><img src="https://agentmods.dev/badge/instructions/junhoyeo/tokscale/agents-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 | $0.03777 | $0.03777 |
| Opus 5 | $0.01888 | $0.01888 |
| Sonnet 5 | $0.00755 | $0.00755 |
| Haiku 4.5 | $0.00378 | $0.00378 |
Grade A, and why
tokscale 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- token-stats AGENTS.md — 95% identical, 23 lines differ
How it starts
The opening of the file, as written. The whole thing — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Agent Guidelines
This document provides context for AI agents working on the Tokscale project.
Maintaining AGENTS.md Files
When updating AGENTS.md files, follow these principles:
- No hardcoded counts — Don't write "10 crates" or "5 modules"; these become outdated instantly
- No exhaustive lists — Prefer dynamic commands (
ls crates/) over maintaining complete lists - Document constraints, not descriptions — Focus on non-obvious behaviors, gotchas, and cross-crate dependencies
- Use nested AGENTS.md — Place crate-specific details in
crates/{name}/AGENTS.md, not here - Verify before documenting — Grep/read the code to confirm claims are accurate
- Delete outdated info — Outdated docs are worse than no docs
Authoring PR/Issue Content via gh CLI
When writing PR bodies, issue bodies, or comments through gh pr create, gh issue comment, etc.: prefer --body-file with a written-out file over inline --body heredocs.
Why: inline --body "$(cat <<'EOF' ... EOF)" patterns lead to recurring mistakes where backticks are written as \` (incorrectly escaping them inside a single-quoted heredoc where no escaping is needed). The literal \` then renders in GitHub markdown as backslash + backtick instead of inline code formatting.
DO:
- Write the body to
/tmp/pr-body.md(or similar) with theWritetool, thengh pr create --body-file /tmp/pr-body.md - For comment edits:
gh api -X PATCH repos/<owner>/<repo>/issues/comments/<id> -F body=@/tmp/comment.md
DON'T:
- Use
gh pr create --body "$(cat <<'EOF' ... \... ` ... EOF)"— single-quoted heredoc means backticks are already literal; escaping with `` \`` is wrong and renders incorrectly. - Use double-quoted heredoc for bodies containing backticks unless you intend command substitution.
- Hard-wrap paragraphs at ~80 columns inside PR/issue/comment bodies. GitHub's markdown collapses single newlines into spaces so the rendered output looks fine, but the raw markdown view is what reviewers and authors edit in, and mid-sentence line breaks read as if the prose was chopped. Write each paragraph as one continuous line and let the renderer wrap it. Same rule for blockquotes, list items that span multiple lines, and table cells. Hard wraps are still fine inside fenced code blocks where preserving line layout matters.
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.
- 4d ago First seen · 283 lines · 3,777 tokens per session scan A dd62ff7dccf1
tokscale AGENTS.md is an instructions file published in the GitHub repository junhoyeo/tokscale (5,239 stars, last pushed 2d ago), licensed MIT. It adds 3,777 tokens to every session, about $0.0189 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.
Other instructions, from other repositories
codedb AGENTS.md
AGENTS.md instructions for justrach/codedb, covering codedb agent guidelines, what codedb is (and isn't), review guidelines, pre-merge verification and security-sensitive areas.
goodboy AGENTS.md
Instructions for akhayam99/goodboy, covering agents.md, where new code goes, naming, components and exports and store selectors and memoization.
goodboy CLAUDE.md
Instructions for akhayam99/goodboy, covering goodboy (claude-specific notes), stack quick-reference and claude-specific notes.
imagine-mcp AGENTS.md
Instructions for n24q02m/imagine-mcp, covering imagine-mcp, architecture, tool signatures, model selection and transport modes.
agent-rules-sync CLAUDE.md
Instructions for dhruv-anand-aintech/agent-rules-sync, covering agent rules sync - project context, quick facts, release workflow, 1. prepare changes and 2. version bump.
mesh AGENTS.md
Instructions for ycanerden/mesh, covering agents.md, cursor cloud specific instructions, prerequisites, commands and services.