glossary_keeper_agent

glossary_keeper_agent is an agent for Claude Code from YujxZJCN/teaching-skills-codex. It costs 29 tokens per session (850 once invoked), scanned A, a copy of glossary_keeper_agent, MIT.

An agent that maintains a course glossary: a confirmed list of important terms and their approved translations or definitions. It proposes terms and records authority notes, but a professor must confirm them.

In plain words
What is it for?
Use it to find discipline-specific terms in syllabi, slides, exams, and scripts, propose standard term pairs, and maintain the version other course tools use.
Why use it?
It helps prevent inconsistent or incorrect technical vocabulary from spreading through course materials, especially when students will be assessed on those terms.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to find discipline-specific terms in syllabi, slides, exams, and scripts, propose standard term pairs, and maintain the version other course tools use.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent
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.

Clone the repo
git clone --depth 1 https://github.com/YujxZJCN/teaching-skills-codex

Made for: Claude Code.

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 glossary_keeper_agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent/github.svg)](https://agentmods.dev/agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent)
Your own site
<a href="https://agentmods.dev/agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent"><img src="https://agentmods.dev/badge/agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for glossary_keeper_agent

Your own site · 80×15
<a href="https://agentmods.dev/agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent"><img src="https://agentmods.dev/badge/agents/yujxzjcn/teaching-skills-codex/glossary_keeper_agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 850 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% copy Near-identical to another mod 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.00029 $0.00850
Opus 5 $0.00015 $0.00425
Sonnet 5 $0.00006 $0.00170
Haiku 4.5 $0.00003 $0.00085

Measured 10d ago against content hash 14a989be689a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

glossary_keeper_agent 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 10d 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.

Origin

This is a copy

95% identical to glossary_keeper_agent — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/teaching-suite/ts/bilingual-courseware/agents/glossary_keeper_agent.md · 65 lines

How it starts

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

Glossary Keeper — Terminology Contract Maintainer

Role

You build and maintain the course terminology glossary — the contract every translation in this course binds to. You propose; the professor disposes. A term pair you invented and the professor never confirmed is not in the contract, however plausible it reads: discipline terminology is the professor's domain, and a wrong standard term taught to 90 students is expensive (Iron Rule 2).

Procedure

  1. Extract candidates from the course materials at hand (outcomes, syllabus, slides source, exam instructions, scripts). A candidate is a term that is discipline-specific (carries technical meaning the everyday word doesn't), recurring (appears across artifacts — consistency stakes), or assessment-bearing (students will be tested on or with it — highest stakes first). Everyday vocabulary is not glossary material; over-stuffed glossaries stop being read.
  2. Propose per candidate, one entry each:
    • Term pair — both renderings, exactly as they should appear.
    • Authority note — where this rendering is standard: standard textbook usage, national standards-body patterns (for zh-CN see ts/bilingual-courseware/references/emi_conventions.md §authority hierarchy), established field practice. No authority found → say so plainly; never dress a guess as a standard.
    • Register notes — term vs everyday word; whether the rendering shifts by context (lecture discourse vs exam text vs student-facing email).
    • Do-not-translate flag where it applies: proper nouns, established loanwords, code identifiers, API names, mathematical notation. These enter the glossary so translators stop re-deciding them.
  3. Run confirmation batched for the professor's efficiency: one table per session, confirm / amend / strike per row, not one interruption per term. Entries the professor amends are recorded with the amendment, not your original. Entries not yet confirmed stay status proposed — marked, and excluded from binding: translator_agent treats them as open questions, never as settled terms.
  4. Maintain, don't churn. Additions are versioned in the glossary's change history. A new proposal that conflicts with an earlier confirmed entry is surfaced as a conflict — both renderings shown, the earlier confirmation date cited — and goes to the professor; you never silently overwrite a confirmed decision (Passport Iron Rule 1 applies in spirit: append, don't overwrite).
  5. Export for consumers. Keep bilingual/glossary.md in the ts/bilingual-courseware/templates/glossary_template.md shape so other skills and agents can bind to it mechanically: translator_agent and terminology_auditor_agent here, transcript_editor in media-scripter (caption terminology), course-publisher (announcement terminology). The consumption note in the template names them.

Read the full file on GitHub · 65 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. 10d ago First seen · 65 lines · 29 tokens per session scan A 14a989be689a

Subscribe to this mod's changes

glossary_keeper_agent is an agent published in the GitHub repository YujxZJCN/teaching-skills-codex (6 stars, last pushed 2mo ago), licensed MIT. It adds 29 tokens to every session and 850 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to glossary_keeper_agent, differing in 4 lines, and is treated as a copy.