Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add rudini/claude-edu-plugins/plugin install moodle-skillWrote 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.
[](https://agentmods.dev/skills/rudini/claude-edu-plugins/moodle)<a href="https://agentmods.dev/skills/rudini/claude-edu-plugins/moodle"><img src="https://agentmods.dev/badge/skills/rudini/claude-edu-plugins/moodle.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00044 | $0.02378 |
| Opus 5 | $0.00022 | $0.01189 |
| Sonnet 5 | $0.00009 | $0.00476 |
| Haiku 4.5 | $0.00004 | $0.00238 |
Grade A, and why
moodle 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.
How it starts
The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Moodle Skill — Generic Moodle Course Management
Manage any Moodle course via the moodle-updater.js CLI. All destructive operations require a dry-run first, then explicit user confirmation before --live.
When This Skill Activates
- Explicit:
/moodle-skill:moodle,/moodle-skill:moodle structure
Prerequisites
.envin your project root withMOODLE_URL,MOODLE_SESSION, andCOURSE_ID- Dependencies: Auto-installed on first session via hooks (jsdom, marked, marked-highlight, highlight.js, turndown, playwright)
- Playwright browser: Installed automatically on first
logincommand
Workflow
Phase 1: Parse Command
- Parse
$ARGUMENTS— if arguments provided, use as command + args and proceed to Phase 2. - If
$ARGUMENTSis empty, present the Command Reference Table below and ask which command to run.
Phase 2: Dry-Run
login command: Execute directly — opens a browser for authentication. The browser auto-closes once login is detected. Supports --browser msedge or --browser chrome for SSO.
Read-only commands (structure, list-activities, show-label, show-page, dump-form, dump-grading): Execute directly.
NODE_PATH="${CLAUDE_PLUGIN_DATA}/node_modules" node "${CLAUDE_PLUGIN_ROOT}/scripts/moodle-updater.js" <command> <args...>
All other commands: Execute WITHOUT --live first (dry-run is the default).
Phase 3: Live Execution
After showing the dry-run output, ask the user for confirmation before running with --live.
NODE_PATH="${CLAUDE_PLUGIN_DATA}/node_modules" node "${CLAUDE_PLUGIN_ROOT}/scripts/moodle-updater.js" <command> <args...> --live
Command Reference
| Group | Command | Arguments | Description |
|---|---|---|---|
| Setup | login |
[--browser msedge|chrome] |
Open browser, login, save cookie to .env (auto-closes) |
| Read | structure |
— | Show course structure |
| Read | list-activities |
<sectionId> |
List activities in a section |
| Read | show-label |
<moduleId> |
Show label HTML |
| Read | show-page |
<moduleId> |
Show page HTML |
| Update | update-label |
<moduleId> <htmlFile> |
Replace label content |
| Update | update-page |
<moduleId> <htmlFile> |
Replace page content |
| Update | update-summary |
<sectionId> <htmlFile> |
Replace section summary |
| CRUD | create-url |
<sectionNum> <name> <url> |
Create URL activity |
| CRUD | create-page |
<sectionNum> <name> <htmlOrMdFile> |
Create text page (.md auto-converts) |
| CRUD | create-label |
<sectionNum> <htmlOrMdFile> |
Create label (no name field; .md auto-converts) |
| CRUD | create-resource |
<sectionNum> <name> <file> |
Upload file resource |
| CRUD | create-assign |
<sectionNum> <name> <htmlOrMdFile> [--open ts] [--due ts] |
Create assignment |
| CRUD | create-forum |
<sectionNum> <name> <htmlOrMdFile> |
Create forum |
| CRUD | create-quiz |
<sectionNum> <configJson> |
Create quiz (SEB, time limit) |
| Manage | delete-activity |
<moduleId> |
Delete activity |
| Manage | hide-activity |
<moduleId> |
Hide activity |
| Manage | indent-activity |
<moduleId> |
Indent activity |
| Manage | move-activity |
<moduleId> <afterModuleId> |
Move activity |
| Sections | add-section |
— | Append a new empty section at the end |
| Sections | delete-section |
<sectionId> |
Delete section |
| Sections | duplicate-section |
— | Duplicate last section |
| Sections | move-section |
<sectionId> <targetSectionId> |
Move section before target |
| Sections | rename-section |
<sectionId> <title> |
Rename section |
| Quiz | import-gift |
<cmid> <giftFile> |
Import GIFT questions |
| Quiz | add-questions-to-quiz |
<cmid> [categoryName] |
Assign questions to quiz |
| Quiz | delete-quiz-questions |
<cmid> [categoryName] |
Delete questions in category |
| Grading | grade-essay scrape |
<cmid> --gift <path> [--slot N] --output <file> |
Export student responses as JSON |
| Grading | grade-essay submit |
<cmid> --grades <file> [--live] |
Submit grades to Moodle |
| Assignment | assign-students |
<cmid> [--out <path>] |
List participants + submission status |
| Assignment | assign-subs |
<cmid> [--all] [--user <id>] |
Download submissions (online text + files) |
| Assignment | assign-grades |
<cmid> [--user <id>] |
Read current grade per participant |
| Assignment | assign-submit |
<cmid> --from <grades.json> [--user <id>] [--live] |
Write points + comments back to Moodle |
| Gradebook | gradebook |
— | Show gradebook tree with item IDs + weights |
| Gradebook | gradebook-create-category |
<name> [--aggregation N] [--weight N] [--live] |
Create a grade category |
| Gradebook | gradebook-set-weights |
<id:weight ...> [--live] |
Set weight overrides (IDs from gradebook) |
| Gradebook | gradebook-move-to-category |
<cmid> <categoryId> [--live] |
Move an activity into a category |
| Diagnostic | dump-form |
<type> <sectionNum> |
Inspect form fields |
| Diagnostic | dump-grading |
<cmid> [--slot N] |
Inspect grading page |
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.
- 6d ago First seen · 172 lines · 44 tokens per session scan A 6bf873333db9
moodle is a skill published in the GitHub repository rudini/claude-edu-plugins (4 stars, last pushed 2mo ago), licensed MIT. It adds 44 tokens to every session and 2,378 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-31.
Other skills, from other repositories
hr-onboarding
A new-hire onboarding plan as a single page — first week schedule, buddy + manager intro, learning track, equipment checklist, and "you're set when…" outcomes. Use when the brief mentions "onboarding", "new hire", "first week plan", or "入职".
book-mirror
Take any book (EPUB/PDF), produce a personalized chapter-by-chapter analysis. Each chapter is preserved in detail (The Chapter) and mirrored back to the reader's actual life (The Mirror) using brain context. The mirror observes and resonates — a friend pointing out parallels, NOT a consultant rearranging the reader's…
miniapp
Build a tiny interactive HTML playground only when someone asks to see, play with, or step through a mechanism.
eli5
Explain research, papers, or technical ideas in plain English with minimal jargon, concrete analogies, and clear takeaways. Use when the user says "ELI5 this", asks for a simple explanation of a paper or research result, wants jargon removed, or asks what something technically dense actually means.
deck-course-module
暖纸背景 + Playfair, 左侧学习目标常驻, 含 MCQ 自测页.
master-yinguang
Use when user asks about 印光大师, 净土, 念佛, 持名念佛, 十念法, 摄耳谛听, 老实念佛, 信愿行, 带业往生, 仗佛慈力, 自力他力, 竖出横超, 往生, 极乐, 阿弥陀佛, 净土三经, 敦伦尽分, 闲邪存诚, 因果报应, 文钞, 一函遍复, or wants teaching in 印光大师 Yinguang's voice. Triggers include "印光"、"文钞"、"老实念佛"、"信愿行"、"带业往生"、"仗佛慈力"、"横超竖出"、"都摄六根"、"净念相继"、"敦伦尽分"、"闲邪存诚"、"因果"、"十念法"、"摄耳谛听"、"一函遍复"、"净土三经"、"往生" — invoke…