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/glory-rs/glory/agents-mdgit clone --depth 1 https://github.com/glory-rs/gloryWhat 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.02075 | $0.02075 |
| Opus 5 | $0.01038 | $0.01038 |
| Sonnet 5 | $0.00415 | $0.00415 |
| Haiku 4.5 | $0.00208 | $0.00208 |
Grade A, and why
glory 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 2d 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 — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Project conventions and design guardrails for AI coding agents and contributors.
Companion to README.md. For the broader analysis and the prioritised
backlog see _report.md and _todos.md.
What Glory is
Glory is an experimental Rust web framework. Components are built as builder-pattern
Rust types (div().class("...").on(click, ...)), not via an rsx! / JSX macro. The
reactive primitive is Cage<T> (mutable) / Bond<T> (derived) / Lotus<T> (the
read-only union). Targets today: browser (CSR via wasm-bindgen) and SSR (HTML
string output, integrated with Salvo). Roadmap: desktop webview, native rendering,
LiveView-style server driving — see _report.md §3 / _todos.md §3–§4.
Crate layout
crates/
core/ signals, view/widget/scope/node, web/csr + web/ssr,
widgets (Each / Switch / Loader), SSR holder
glory/ thin re-export front door, depends on core (+ optional routing)
routing/ client-side router (currently wasm32-only)
cli/ glory-cli build tool (wasm compile, css, hot reload server)
hot-reload/ placeholder / partial; AST-diff types for future hot reload
examples/ per-app crates (counter, todomvc, hackernews-salvo, ssr-*, ...)
Feature flags and combinations
glory-core features (also re-exported through glory):
web-csr— client-side rendering in the browser. Impliessingle-app.web-ssr— server-side rendering, in-memoryNodetree → HTML string.salvo— Salvo HTTP integration, impliesweb-ssr.single-app— internal. Automatic withweb-csr. Switches the reactive scheduler to a single global instance instead ofHolderId-keyed thread locals. Don't toggle manually outside CSR.
Never enable web-csr + web-ssr in the same build. They define Node
incompatibly (web_sys::Element vs an in-memory struct). Tests rely on this
exclusion — see [package.metadata.cargo-all-features].skip_feature_sets.
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.
- 2d ago First seen · 152 lines · 2,075 tokens per session scan A f0ce123a161a
glory AGENTS.md is an instructions file published in the GitHub repository glory-rs/glory (43 stars, last pushed 20d ago), licensed MIT. It adds 2,075 tokens to every session, about $0.0104 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
cli AGENTS.md
Instructions for googleworkspace/cli, covering agents.md, project overview, build & test, changesets and architecture.
turso AGENTS.md
Instructions for tursodatabase/turso, covering turso agent guidelines, quick reference, testing, running tests and test organization.
intelligent-terminal rust.instructions.md
Concise Rust coding conventions for this repository.
Browser4 CLAUDE.md
Instructions for platonai/Browser4, covering browser4 — project context for claude, architecture, key dispatch chain (cli → browser), batch commands and e2e test structure.
ton-rs AGENTS.md
Instructions for ston-fi/ton-rs, covering ton-rs agent guide, repository, boundaries, public api and ton invariants.
cli AGENTS.md
Instructions for rustfs/cli, covering agents.md - ai development guidelines, language requirements, first-principles reasoning, workflow and 0. branch base policy.