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/denoland/deno/claude-mdgit clone --depth 1 https://github.com/denoland/denoWhat 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.02993 | $0.02993 |
| Opus 5 | $0.01496 | $0.01496 |
| Sonnet 5 | $0.00599 | $0.00599 |
| Haiku 4.5 | $0.00299 | $0.00299 |
Grade A, and why
deno CLAUDE.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 — 434 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deno Development Guide
Table of Contents
- Git workflow
- High Level Overview
- Quick Start
- Commands
- Testing
- Development Workflows
- Debugging
- Codebase Navigation
- Troubleshooting
Git workflow
Deno uses a GH based standard git workflow. The main branch is main. All
development happens in feature branches, which are then merged into main via
pull requests.
When the feature is finished and ready to for review, follow these steps:
- Create a new git branch, if you haven't already, with a descriptive name
(e.g.,
feature/new-cli-commandorfix/bug-in-worker-threads). - Commit your changes with clear and descriptive commit messages.
- Push your branch to the remote repository.
- Open a pull request (PR) against the
mainbranch on GitHub. - Before committing, make sure
tools/format.jsis run to format your code - Before committing, if only non-Rust was changed, make sure to run
tools/lint.js --jsand fix any lint errors before committing - If you changed Rust code, make sure to run
tools/lint.jsand fix any lint errors before committing - In the PR description, provide a clear summary of the changes you made, why they were necessary, and any relevant context or links to related issues.
- When pushing updates to the PR, make sure to never force push. Create as many commits as you need, all of them get squashed when the PR is merged, so there is no need to rewrite history. This also allows reviewers to see the incremental changes you made in response to feedback.
- Keep your changes minimal, don't do drive-by changes in a PR. If you need to make a change that is not directly related to the PR, create a separate PR for it. This keeps the review process focused and efficient.
High Level Overview
The user visible interface and high level integration is in the deno crate
(located in ./cli).
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 · 434 lines · 2,993 tokens per session scan A 69015aad5ec6
deno CLAUDE.md is an instructions file published in the GitHub repository denoland/deno (108,342 stars, last pushed 2d ago), licensed MIT. It adds 2,993 tokens to every session, about $0.0150 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
sxo AGENTS.md
Instructions for gc-victor/sxo, covering agents.md, quick start (tl;dr), special error pages (404/500), info and purpose.
oxc AGENTS.md
Instructions for oxc-project/oxc, covering agents.md - ai assistant guide for oxc, ai usage policy for contributors, repository structure, core crates and development commands.
page-agent AGENTS.md
Instructions for alibaba/page-agent, covering instructions for coding assistants, project overview, development commands, architecture and monorepo structure.
ax AGENTS.md
Instructions for ax-llm/ax, covering ax repository guide, what this file is for, repository layout, canonical docs and current project defaults.
intlayer CLAUDE.md
Instructions for aymericzip/intlayer, covering repo layout, commands (run from root), content declaration flow, git and commit conventions.
OneJS AGENTS.md
Instructions for Singtaa/OneJS, covering onejs v3: agent guide, requirements, install, project setup and build and live reload.