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/cyjake/leoric/agents-mdgit clone --depth 1 https://github.com/cyjake/leoricWrote 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/cyjake/leoric/agents-md)<a href="https://agentmods.dev/instructions/cyjake/leoric/agents-md"><img src="https://agentmods.dev/badge/instructions/cyjake/leoric/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 | $0.01259 | $0.01259 |
| Opus 5 | $0.00629 | $0.00629 |
| Sonnet 5 | $0.00252 | $0.00252 |
| Haiku 4.5 | $0.00126 | $0.00126 |
Grade A, and why
leoric 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.
How it starts
The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Guidelines
This file guides AI coding agents working in the leoric repository. Read it before making changes: it captures conventions that are not obvious from the code alone. A Chinese mirror is available in AGENTS.zh-CN.md.
Project Overview
Leoric is an object-relational mapping (ORM) library for Node.js, heavily
influenced by Active Record of Ruby on Rails. Models are declared as classes
extending Bone, connected to MySQL/PostgreSQL/SQLite through Realm, and
queried with a chainable API. Source is TypeScript (src/); tsc emits
JavaScript (lib/ for CJS, dist/ for ESM) plus declaration files
(lib/*.d.ts), which ship to npm.
Commands
| Command | Purpose |
|---|---|
npm run prepack |
Build lib/ (CJS) and declaration files; also builds ts4.9-compatible types via scripts/build-ts49-types.js |
npm run prepack:browser |
Build the ESM bundle in dist/ |
npm run test:sqlite |
Fastest test run (single dialect, runs through test/start.sh) |
npm run test:unit |
Unit tests only |
npm run test |
Full suite: unit first, then integration per dialect |
npm run test:dts |
Type-level tests in test/types/*.test.ts (consumer fixtures: test:dts:ts5, test:dts:ts4.9) |
npm run lint |
ESLint over the whole repo |
npm run jsdoc |
Regenerate docs/api from JSDoc comments |
Notes:
- Tests run via mocha + ts-node through
test/start.sh; no build step is needed before testing. - Integration tests need databases on localhost; check
test/prepare.shandtest/start.shfor how they are provisioned. lib/anddist/are build artifacts — never edit them directly; regenerate withnpm run prepack.
Architecture
src/bone.ts— theBonebase class users extend; typed query entry points (find,findOne,sum,restore,update...)src/abstract_bone.ts— core model implementation: attributes, associations, lifecycle,init()/sync(), instance methods (save,remove,reload,toObject...)src/model.ts— model class compilation (compileModel) andLeoricModelCompilationErrorsrc/realm/base.ts—Realm: connection management,define(), model registration,connect()/sync()/query()/transaction()src/drivers/— SQL dialects (mysql,postgres,sqlite,sqljs) built ondrivers/abstractsrc/spell.ts— the chainable query builder (where,order,limit,with, ...); turns into SQL viasrc/expr.ts/src/expr_formatter.tssrc/query_object.ts— condition parsing (operators such as$gt,$in) consumed by spellsrc/data_types.ts—DataTypesdefinitionssrc/adapters/sequelize.ts— Sequelize compatibility layersrc/index.ts— public entry; re-exports everything users import fromleoric
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.
- 4d ago First seen · 67 lines · 1,259 tokens per session scan A 516fb9225794
leoric AGENTS.md is an instructions file published in the GitHub repository cyjake/leoric (234 stars, last pushed 16d ago), licensed BSD-3-Clause. It adds 1,259 tokens to every session, about $0.0063 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
coolify AGENTS.md
AGENTS.md instructions for coollabsio/coolify, covering agents.md, project overview, design reference, development environment and start dev environment (uses docker-compose.dev.yml).
whodb AGENTS.md
AGENTS.md instructions for clidey/whodb, covering whodb development guide, git commits — hard rule, terminology, non-negotiable rules and behavioral guidelines.
graphjin AGENTS.md
AGENTS.md instructions for dosco/graphjin, covering graphjin agent guide, architectural overview, directory structure & responsibilities, build commands and coding guidelines.
whodb CLAUDE.md
Claude Code instructions for clidey/whodb, a project described as: Where data access meets operational intelligence.
FlyEnv AGENTS.md
AGENTS.md instructions for xpf0000/FlyEnv, covering flyenv - ai agent development guide, project overview, technology stack, core technologies and additional libraries.
Chat2DB AGENTS.md
AGENTS.md instructions for OtterMind/Chat2DB, covering chat2db community agent contract, context, product invariants, repository map and structural code navigation.