Borrowing it
Nothing to install: this file belongs to jscraik/Agent-Skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/jscraik/Agent-Skills/main/AGENTS.mdgit clone --depth 1 https://github.com/jscraik/Agent-SkillsWrote 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/jscraik/agent-skills/agents-md)<a href="https://agentmods.dev/instructions/jscraik/agent-skills/agents-md"><img src="https://agentmods.dev/badge/instructions/jscraik/agent-skills/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.1 | $0.01271 | $0.01271 |
| Opus 5 | $0.00635 | $0.00635 |
| Sonnet 5 | $0.00254 | $0.00254 |
| Haiku 4.5 | $0.00127 | $0.00127 |
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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agent-skills Agent Guide
Agent Skills Kit is the canonical control plane for authoring, validating, discovering, and syncing Codex skills, operator docs, and agent workflows.
Root Essentials
- On a fresh checkout, run
bash scripts/bootstrap-ask.sh --jsonbefore requiring./bin/ask; if the wrapper is unavailable, verify the fallback withpython3 bin/ask repo status --json. - Use
./bin/askfor repo operations; it forwards toInfrastructure/bin/ask. - The repository root has no package manager install step. Use repo wrappers at the root, and use package commands only inside verified package roots.
- Inspect YAML through the managed wrapper lane, not ad hoc system Python:
./bin/ask repo yaml-inspect <repo-relative-yaml> --json --robotormise run yaml-inspect -- <repo-relative-yaml>. Plainpython3is not a PyYAML contract for this repo. - Run Infrastructure Python tests through the locked Infrastructure environment,
not the system Python from the repo root. Use
bash Infrastructure/scripts/run-infrastructure-python.sh -m unittest tests.<module>orbash Infrastructure/scripts/run-infrastructure-python.sh -m pytest <path>so dependencies fromInfrastructure/uv.lockare available. - Before changing skills, sync policy, runtime projections, or agent-facing docs, read UBIQUITOUS_LANGUAGE.md.
- Before changing Skills SDK plans, specs, atlas visuals, capability claims, or
product-direction docs, use the product-boundary terms in
UBIQUITOUS_LANGUAGE.md:
/Users/jamiecraik/dev/skills-foundryis the source-only Foundry for retained packages;agent-skillsimplements and dogfoods the Skills SDK and owns active SDK candidates; Tessl is distribution and external proof; and local runtime truth is a separate installed-behavior lane. A package's explicit owner decision—not a runtime path—decides its canonical source. - For a package selecting
skills-sdk.gold-standard.v1, read Skills SDK Authoring Contract, updatereferences/contract.yaml: authoring_contractwith the skill, and run./bin/ask skills package verify <skill-path> --json --robot. That is a structural admission gate only: run the declared behavioral proof and the selected runtime or external lane before claiming the skill is ready. - Edit canonical sources, not runtime projections. See Path Ownership Boundaries.
- Finish the named outcome through the smallest local change and focused proof.
Feedback is diagnostic evidence, not automatic authority to stop delivery or
add process. Select the
High-Signal Steering Feedback
only for its named conditions. Routine delivery does not require a steering
ledger entry or new process artifact. When that route is selected, opening and reading it in the current turn is required; record the result in
.harness/quality/steering-uptake.mdand runpython3 Infrastructure/scripts/validation-and-linting/validate_steering_uptake.py --json. - Keep runtime handles candidate-bound: wait, poll, or resume only the active handle returned by the immediately preceding tool result, and perform those operations serially for that handle. See High-Signal Steering Feedback for recovery rules.
- Skills SDK PM thread coordination: when Jamie designates one thread as the Skills SDK PM decision surface, use PM Thread Coordination.
- Keep local, runtime, cloud, Tessl, and release proof separate. Use Tessl Live Skill Eval Workflow and Skills SDK Runtime Lane Contract only when those lanes are selected.
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.
- 6d ago First seen · 96 lines · 1,271 tokens per session scan A a15750bbdfd4
Agent-Skills AGENTS.md is an instructions file published in the GitHub repository jscraik/Agent-Skills (8 stars, last pushed 5d ago), licensed Apache-2.0. It adds 1,271 tokens to every session, about $0.0064 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-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.