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/nyaomaru/is-kit/agents-mdgit clone --depth 1 https://github.com/nyaomaru/is-kitWhat 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.02345 | $0.02345 |
| Opus 5 | $0.01172 | $0.01172 |
| Sonnet 5 | $0.00469 | $0.00469 |
| Haiku 4.5 | $0.00234 | $0.00234 |
Grade A, and why
is-kit 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 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 — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
Project Structure & Modules
src/: Library source (TypeScript). Key areas:core/: primitives and building blocks- guards:
primitive.ts,object.ts - logic:
logic.ts(and,andAll,or,not,guardIn) - equality:
equals.ts(equals,equalsBy,equalsKey) - parsing:
parse.ts(safeParse,safeParseWith) - nullability:
nullish.ts(nullable,nonNull,nullish,optional,required) - helpers:
define.ts,predicate.ts - combinators:
core/combinators/*(arrayOf,tupleOf,oneOf,recordOf,struct,oneOfValues)
- guards:
types/: shared type utilitiesutils/: internal helpers (e.g.,toBooleanPredicates)- Entry:
src/index.tsre-exports public API (core,types,utils).
tests/: Jest runtime tests, mirroringsrc/paths (e.g.,tests/core/combinators/struct.test.ts).tests-d/:tsdtype tests, mirroringsrc/paths (e.g.,tests-d/core/combinators/struct.test-d.ts).dist/: Build output (ESM.mjs, CJS.js, and.d.ts) generated bytsup.- Config:
tsconfig*.json,tests/tsconfig.json,tests-d/tsconfig.json,tsup.config.ts,jest.config.cjs,.oxlintrc.json.
Build, Test, and Development
- Install:
pnpm install - Lint:
pnpm lint— Oxlint over the repo. - Build:
pnpm build— bundles viatsuptodist/(ESM + CJS + types). - Test (runtime):
pnpm test— runs Jest specs intests/. - Test (types):
pnpm test:types— runstsdspecs intests-d/.
CI runs lint, build, unit tests, and type tests on PRs against main.
Coding Style & Naming
- Language: TypeScript (
strict: true). Target ES2022; outputs ESM/CJS. - Imports: use alias
@/*for sources (e.g.,import { struct } from '@/core/combinators'). - Formatting: Oxfmt; 2-space indent; single quotes; semicolons.
- Lint: Oxlint config in
.oxlintrc.json. Project rules:complexity≤ 7;no-unused-vars/no-undefwarn; ignoresdist/*. - Files: kebab-case for modules (
core/combinators/tuple.ts), named exports; keep public API re-exported fromsrc/index.ts.
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 · 213 lines · 2,345 tokens per session scan A 359a342d76fa
is-kit AGENTS.md is an instructions file published in the GitHub repository nyaomaru/is-kit (71 stars, last pushed 2d ago), licensed MIT. It adds 2,345 tokens to every session, about $0.0117 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-09-01.
Other instructions, from other repositories
open-pencil copilot-instructions.md
Copilot instructions for open-pencil/open-pencil, covering openpencil copilot instructions, pull request requirements, validation and code conventions.
openscreen AGENTS.md
Instructions for getopenscreen/openscreen, covering agents.md, setup commands, development principles, project layout and code style.
Claw3D AGENTS.md
Instructions for iamlukethedev/Claw3D, covering agent instructions, cursor cloud specific instructions, service overview, running the app and lint, typecheck, and tests.
openstatus AGENTS.md
AGENTS.md instructions for openstatusHQ/openstatus, covering agents.md, verify your change, toolchain, architecture and tests.
openstatus CLAUDE.md
Claude Code instructions for openstatusHQ/openstatus, covering claude.md and investigating production with polylane.
abap2UI5 CLAUDE.md
Instructions for abap2UI5/abap2UI5: All project guidance lives in AGENTS.md — the single source of truth for this repository (architecture and the layered design, the src/00-99 packages, the generated app/webapp mirror, the build and delivery pipeline, the CI gates and ABAP code style).