agent-skills AGENTS.md

agent-skills AGENTS.md is an instructions file for Codex, OpenCode from youdotcom-oss/agent-skills. It costs 1,092 tokens per session, scanned A, original, MIT.

A set of repository instructions for coding agents working on the You.com skills package. It defines project conventions, available checks, and rules for keeping changes small and verified.

In plain words
What is it for?
Use it to guide work in the repository, discover the correct Bun-based checks, follow its style rules, and decide when existing code should be reused.
Why use it?
It gives an agent the project context it needs before editing files or running checks. This reduces guessed commands, unnecessary code, and changes outside the requested area.

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/youdotcom-oss/agent-skills/agents-md
Clone the repo
git clone --depth 1 https://github.com/youdotcom-oss/agent-skills

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 agent-skills AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/youdotcom-oss/agent-skills/agents-md.svg)](https://agentmods.dev/instructions/youdotcom-oss/agent-skills/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/youdotcom-oss/agent-skills/agents-md"><img src="https://agentmods.dev/badge/instructions/youdotcom-oss/agent-skills/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,092 This file is loaded in full into every session.
When invoked 1,092 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.1 $0.01092 $0.01092
Opus 5 $0.00546 $0.00546
Sonnet 5 $0.00218 $0.00218
Haiku 4.5 $0.00109 $0.00109

Measured 5d ago against content hash 3d67329f50ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

agent-skills 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 5d 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.

AGENTS.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Instructions

This repo packages You.com skills and plugin manifests for multiple coding-agent surfaces. Keep changes small, verified, and tied to the requested surface.

Tooling discovery

  • Prefer Bun for TypeScript, scripts, orchestration, and running checks. Use Bun to trigger Python and TypeScript tooling unless an existing script says otherwise.
  • Bun MCP docs: https://bun.com/docs/mcp
  • Before choosing commands, scan package.json, biome.json, ruff.toml, and relevant packages/*/package.json scripts. Do not guess command names.
  • Root checks currently flow through Bun: bun test, bun run check, bun run check:types, bun run check:ts, bun run check:py, bun run check:package.
  • Package checks often differ. Use the package script in packages/<name>/package.json for package-scoped work.

Minimal-implementation directive

Before writing code, resolve the task at the FIRST step that holds:

  1. Does this capability need to exist for the stated task? If it is speculative, do not build it. Say so in one sentence and stop.
  2. Does something already in THIS codebase do it? Reuse it. Read before you write; re-implementing a helper that lives three files over is the most common waste.
  3. Does the standard library or the runtime/platform already do it? (<input type="date">, a DB unique constraint, a CSS rule.) Use it.
  4. Does an already-installed dependency do it? Use it. Do not add a new dependency for something a few lines cover.
  5. Can it be one clear expression? Write the one expression.
  6. Otherwise: the smallest code that fully handles the task.

NON-NEGOTIABLE FLOOR: none of the steps above may remove any of these, and "minimal" is never a reason to drop them:

  • input validation at trust boundaries (anything crossing a process, network, file, or user edge),
  • error handling that prevents data loss or silent corruption,
  • authn/authz and other security checks,
  • accessibility for anything a human interacts with.

If a step would require cutting one of these, that step does not apply.

Read the full file on GitHub · 70 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. 5d ago First seen · 70 lines · 1,092 tokens per session scan A 3d67329f50ab

Subscribe to this mod's changes

agent-skills AGENTS.md is an instructions file published in the GitHub repository youdotcom-oss/agent-skills (66 stars, last pushed 4d ago), licensed MIT. It adds 1,092 tokens to every session, about $0.0055 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.