cmd-moodle-string-check

cmd-moodle-string-check is a cursor rule for Cursor from SaadRahman01/claude-moodle-dev. It costs 30 tokens per session (540 once invoked), scanned A, original, MIT.

A code-checking rule for Moodle plugins that finds user-facing English text written directly in source files instead of through Moodle’s translation system. Moodle is a learning platform, and its translation system lets the interface show different languages.

In plain words
What is it for?
Use it to scan PHP, Mustache templates, and JavaScript for visible strings that should use Moodle translation functions such as get_string() or {{#str}}.
Why use it?
It helps prevent untranslated text from appearing in the plugin. It also points developers toward the correct translation keys and language files.

Cursor rule for Cursor

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 rules/saadrahman01/claude-moodle-dev/cmd-moodle-string-check
Clone the repo
git clone --depth 1 https://github.com/SaadRahman01/claude-moodle-dev

Made for: Cursor.

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

README.md
[![agentmods](https://agentmods.dev/badge/rules/saadrahman01/claude-moodle-dev/cmd-moodle-string-check.svg)](https://agentmods.dev/rules/saadrahman01/claude-moodle-dev/cmd-moodle-string-check)
Your own site
<a href="https://agentmods.dev/rules/saadrahman01/claude-moodle-dev/cmd-moodle-string-check"><img src="https://agentmods.dev/badge/rules/saadrahman01/claude-moodle-dev/cmd-moodle-string-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 540 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 $0.00030 $0.00540
Opus 5 $0.00015 $0.00270
Sonnet 5 $0.00006 $0.00108
Haiku 4.5 $0.00003 $0.00054

Measured 4d ago against content hash e605f1e65309, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cmd-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 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.

adapters/cursor/.cursor/rules/cmd-moodle-string-check.mdc · 53 lines

What it actually says

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

User's input: {user_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. 4d ago First seen · 53 lines · 540 tokens per session scan A e605f1e65309

Subscribe to this mod's changes

cmd-moodle-string-check is a cursor rule published in the GitHub repository SaadRahman01/claude-moodle-dev (35 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 540 once invoked, about $0.0002 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.