moodle-string-check

moodle-string-check is a command for Claude Code from SaadRahman01/claude-moodle-dev. It costs 0 tokens per session (527 once invoked), scanned A, original, MIT.

A checker that finds user-facing English text in Moodle plugin code that is not connected to Moodle’s translation system. It examines PHP, Mustache templates, and JavaScript.

In plain words
What is it for?
Use it to scan a Moodle plugin, compare its language keys with the code, and locate hard-coded strings that should use Moodle translation helpers.
Why use it?
It identifies text that may appear untranslated, including labels, messages, headings, and accessibility text written directly in code.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the moodle-dev plugin — 13 skills, 8 commands, 2 agents shipped together

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.

agentmods
npx agentmods add commands/saadrahman01/claude-moodle-dev/moodle-string-check
Clone the repo
git clone --depth 1 https://github.com/SaadRahman01/claude-moodle-dev

Made for: Claude Code.

Or install moodle-dev, the plugin that ships this one along with the rest of its 13 skills, 8 commands, 2 agents.

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 moodle-string-check

README.md
[![agentmods](https://agentmods.dev/badge/commands/saadrahman01/claude-moodle-dev/moodle-string-check.svg)](https://agentmods.dev/commands/saadrahman01/claude-moodle-dev/moodle-string-check)
Your own site
<a href="https://agentmods.dev/commands/saadrahman01/claude-moodle-dev/moodle-string-check"><img src="https://agentmods.dev/badge/commands/saadrahman01/claude-moodle-dev/moodle-string-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 527 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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.00000 $0.00527
Opus 5 $0.00000 $0.00264
Sonnet 5 $0.00000 $0.00105
Haiku 4.5 $0.00000 $0.00053

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

Security

Grade A, and why

moodle-string-check 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.

adapters/aider/commands/moodle-string-check.md · 53 lines

What it actually says

/moodle-string-check

Find hard-coded English strings that should use get_string() / Mustache {{#str}}.

You will find untranslated user-facing strings in a Moodle plugin.

User's input:

If empty, ask for a plugin path.

Steps:

  1. Walk the plugin directory.

  2. Read lang/en/<component>.php — list defined keys.

  3. For each .php, .mustache, and .js file, find user-facing strings that are not loaded via get_string/{{#str}}/core/str:

    PHP heuristics:

    • String literals passed to:
      • $mform->addElement(..., 'X', '<literal>') — second arg = label
      • new admin_setting_configtext(..., '<literal>', '<literal>') — title + description
      • new \html_table_cell('<literal>'), html_writer::tag('p', '<literal>')
      • notification::success('<literal>'), \core\notification::error('<literal>')
      • redirect($url, '<literal>')
      • throw new moodle_exception('<literal>') — should be a string KEY, not a sentence
    • Direct echo of literals over 3 words

    Mustache heuristics:

    • Visible text not wrapped in {{#str}}KEY, COMPONENT{{/str}}
    • Aria-labels / titles with literal text

    JS heuristics:

    • String literals passed to Notification.alert(), Toast.add(), error messages thrown
    • Any UI-visible literal not loaded via core/str get_string/get_strings
  4. Skip strings that are clearly identifiers (selectors, classes, route keys, lang keys themselves).

  5. Output findings as:

[FILE]:[LINE] "<literal>"
   → propose key: <plugin>:<snake_case>
   → in lang/en/<component>.php:
       $string['<key>'] = '<literal>';
   → replacement:
       <PHP>: get_string('<key>', '<component>')
       <Mustache>: {{#str}}<key>, <component>{{/str}}
       <JS>: await getString('<key>', '<component>')
  1. Optionally, propose adding lang/en/<component>.php keys in a single edit and substituting the literals.

Reference the moodle-plugin-development skill for lang string conventions.

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. 6d ago First seen · 53 lines · 0 tokens per session scan A ea17ce400109

Subscribe to this mod's changes

moodle-string-check is a command published in the GitHub repository SaadRahman01/claude-moodle-dev (36 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 527 tokens. 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.