moodle-mustache-lint

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

A checker for Mustache templates, which are files that generate parts of a Moodle page. It looks for accessibility, security, and Moodle template convention problems.

In plain words
What is it for?
Use it to check .mustache files in a Moodle plugin, either in a chosen path or in template folders under the current directory.
Why use it?
It finds issues such as unsafe output, missing image descriptions, inaccessible controls, inline JavaScript, and text that cannot be translated.

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

Good fit Use it to check .mustache files in a Moodle plugin, either in a chosen path or in template folders under the current directory.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint
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/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-mustache-lint

README.md
[![agentmods](https://agentmods.dev/badge/commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint/github.svg)](https://agentmods.dev/commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint)
Your own site
<a href="https://agentmods.dev/commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint"><img src="https://agentmods.dev/badge/commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint/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 moodle-mustache-lint

Your own site · 80×15
<a href="https://agentmods.dev/commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint"><img src="https://agentmods.dev/badge/commands/saadrahman01/claude-moodle-dev/moodle-mustache-lint.svg" alt="Reviewed on agentmods" width="80" 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 708 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 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.00708
Opus 5 $0.00000 $0.00354
Sonnet 5 $0.00000 $0.00142
Haiku 4.5 $0.00000 $0.00071

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

Security

Grade A, and why

moodle-mustache-lint 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 11d 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-mustache-lint.md · 78 lines

How it starts

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

/moodle-mustache-lint

Lint Mustache templates for accessibility, security, hard-coded strings, and Moodle template conventions.

Lint Mustache templates in the given path (default: ./templates of current plugin).

User's input:

Procedure

  1. Resolve target path. If <args> empty, glob **/templates/**/*.mustache under cwd.
  2. Activate moodle-accessibility and moodle-theme-development skills for rule context.
  3. For every .mustache file, check:

Security

  • No raw triple-stache {{{ ... }}} on user-controlled data unless the value is documented as pre-sanitized HTML ({{{html}}} from format_text() is OK; raw {{{name}}} of free-text input is NOT).
  • No <script> blocks — JS belongs in amd/src/ modules, loaded via {{#js}} block.
  • No inline onclick= / onload= / javascript: URLs.

Accessibility

  • Every <img> has alt="" (decorative) or alt="{{#str}}..." (meaningful).
  • Every interactive element is a <button> or <a href>, not <div onclick>.
  • Form inputs have associated <label for="..."> or aria-label.
  • Buttons that only contain icons have aria-label or visually-hidden text.
  • Heading order is not skipped (no <h1> then <h4>).
  • Color is not the only signal (icons + text, not just red/green).

Strings & i18n

  • No hard-coded user-facing English. Use {{#str}}identifier, component{{/str}}.
  • Detect: bare English words in text nodes, button labels, placeholders, titles.
  • Aria labels likewise must use {{#str}}.

Moodle conventions

  • Template starts with a Mustache comment block documenting context variables:
    {{!
        @template component/templatename
    
        Description.
    
        Context variables required for this template:
        * variable - description
    }}
    
  • Use {{#pix}} for icons, not raw <i class="fa-...">.
  • Use {{#js}} for JS init, not inline <script>.
  • Use core/modal markup, not bootstrap-direct <div class="modal">.

Output

Produce a markdown report:

Read the full file on GitHub · 78 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. 11d ago First seen · 78 lines · 0 tokens per session scan A 1e85694d37fe

Subscribe to this mod's changes

moodle-mustache-lint 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 708 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.