tokscale AGENTS.md

tokscale AGENTS.md is an instructions file for Codex, OpenCode from junhoyeo/tokscale. It costs 3,777 tokens per session, scanned A, original, MIT.

Project instructions for Tokscale, including rules for maintaining AGENTS.md files and writing GitHub pull requests and issues. AGENTS.md files give coding agents repository-specific guidance, while the GitHub CLI is a terminal tool for managing GitHub work.

In plain words
What is it for?
Use them when updating agent instructions, checking repository facts, creating pull requests or issues, and following the project's Git commit and merge rules.
Why use it?
They help keep project guidance accurate and prevent common mistakes when documenting or submitting changes.

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/junhoyeo/tokscale/agents-md
Clone the repo
git clone --depth 1 https://github.com/junhoyeo/tokscale

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 tokscale AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/junhoyeo/tokscale/agents-md.svg)](https://agentmods.dev/instructions/junhoyeo/tokscale/agents-md)
Your own site
<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>
Per session 3,777 This file is loaded in full into every session.
When invoked 3,777 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.03777 $0.03777
Opus 5 $0.01888 $0.01888
Sonnet 5 $0.00755 $0.00755
Haiku 4.5 $0.00378 $0.00378

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

Security

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

AGENTS.md · 283 lines

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 the Write tool, then gh 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.

Read the full file on GitHub · 283 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 · 283 lines · 3,777 tokens per session scan A dd62ff7dccf1

Subscribe to this mod's changes

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.