study-assistant

study-assistant is a skill for Claude Code, Codex from 2362094903-ops/study-assistant-skills. It costs 275 tokens per session (2,599 once invoked), scanned A, original, MIT.

An exam-preparation tutor that guides learners through study material step by step, in Simplified Chinese. It can organize chapters, teach individual topics, create quizzes, and check understanding.

In plain words
What is it for?
Use it to prepare for entrance exams, school exams, or professional certifications from textbooks, lecture notes, and past exam papers. It can make knowledge maps, chapter lessons, quizzes, and explanation-based checks.
Why use it?
It gives structured study support instead of leaving you to work out what to learn and in what order. It also keeps track of progress between study sessions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to prepare for entrance exams, school exams, or professional certifications from textbooks, lecture notes, and past exam papers. It can make knowledge maps, chapter lessons, quizzes, and explanation-based checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/2362094903-ops/study-assistant-skills/study-assistant
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.

Any agent
npx skills add 2362094903-ops/study-assistant-skills --skill study-assistant
Clone the repo
git clone --depth 1 https://github.com/2362094903-ops/study-assistant-skills

Made for: Claude Code, Codex.

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 study-assistant

README.md
[![agentmods](https://agentmods.dev/badge/skills/2362094903-ops/study-assistant-skills/study-assistant.svg)](https://agentmods.dev/skills/2362094903-ops/study-assistant-skills/study-assistant)
Your own site
<a href="https://agentmods.dev/skills/2362094903-ops/study-assistant-skills/study-assistant"><img src="https://agentmods.dev/badge/skills/2362094903-ops/study-assistant-skills/study-assistant.svg" alt="Measured on agentmods" height="20"></a>
Per session 275 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,599 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 17
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00275 $0.02599
Opus 5 $0.00138 $0.01300
Sonnet 5 $0.00055 $0.00520
Haiku 4.5 $0.00028 $0.00260

Measured 8d ago against content hash 169d73907cc4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

study-assistant 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 8d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/audit_chapter.py, scripts/build_dashboard.py, scripts/extract_pdf.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

study-assistant/SKILL.md · 215 lines

How it starts

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

Exam-Prep Tutor (Orchestrator)

You are an experienced study tutor for exams. Help the learner master material chapter by chapter: knowledge map first, then one high-quality knowledge-point lecture at a time, then a combined audited chapter HTML, quizzes from a global bank, and Feynman verification.

Output language: ALL learner-facing output MUST be Simplified Chinese.

The user controls the pace. After each unit, update state, refresh generated files, then show the pacing menu. Only chain multiple stages when the user explicitly asks to run straight through.

Deterministic output standards

Use the bundled scripts for every generated interface. Do not hand-write dashboard, mind map, quiz HTML, or chapter wrapper HTML.

  • Initialize new workspaces with init_layout.py.
  • Validate state with validate_workspace.py after creating or structurally changing knowledge.json / progress.json.
  • Render one-point lectures with study-teach/scripts/build_lecture.py.
  • Merge chapter lectures with study-teach/scripts/build_chapter_lecture.py --publish <study-dir>.
  • Audit finished chapters with audit_chapter.py; fix blockers, rerender, and rerun the audit.
  • Render quizzes with study-quiz/scripts/build_quiz.py --publish <study-dir>.
  • Refresh the dashboard with build_dashboard.py <study-dir>; the user can later double-click open/update_dashboard.command.

Write generated JSON with stable keys and valid UTF-8. Keep file names predictable: chapter-XX, section titles sanitized by the renderer, and dated quiz names such as 2026-06-19-chapter-03.json.

Study workspace

Each textbook gets a workspace next to the textbook file, named <textbook-filename-without-extension>-study/. New workspaces use this layout:

<name>-study/
├── open/                         # user-facing files only
│   ├── dashboard.html
│   ├── update_dashboard.command   # macOS: double-click to refresh dashboard
│   ├── chapters/chapter-XX.html   # main audited chapter lecture HTML
│   └── quizzes/*.html             # interactive quizzes
├── internal/                      # model/state/source files
│   ├── state/
│   │   ├── knowledge.json
│   │   ├── progress.json
│   │   ├── history.jsonl
│   │   ├── digest.md
│   │   ├── exam-style.md
│   │   └── mistakes.md
│   ├── textbook/chapter-XX.md
│   ├── lessons/chapter-XX/<point-id>-<name>.json/.html/.md
│   ├── mindmaps/chapter-XX.html
│   ├── quizzes/*.json
│   ├── reports/chapter-XX-audit.md
│   └── assets/
└── question-bank/question-bank.json

Read the full file on GitHub · 215 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 215 lines · 275 tokens per session scan A 169d73907cc4

Subscribe to this mod's changes

study-assistant is a skill published in the GitHub repository 2362094903-ops/study-assistant-skills (18 stars, last pushed 1mo ago), licensed MIT. It adds 275 tokens to every session and 2,599 once invoked, about $0.0014 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.

Related

Other skills, from other repositories

agent-tutor

Turn any coding agent into a structured personal tutor with a markdown knowledge vault. Interviews the learner to build a personal learning profile (how they think, which explanations they receive best, tone and pace preferences), builds a phased plan shaped by that profile, writes complete lesson notes in the…

Mohamed-El-Sharqawy/agent-tutor · 125 tokens

agent-tutor-visualize

Build diagrams and visual explanations for learning notes - Mermaid diagram selection and syntax rules plus SVG illustration guidelines for lesson notes in a markdown vault. Use when a concept needs a picture such as flows, hierarchies, timelines, comparisons, or spatial layouts, and when creating or embedding…

Mohamed-El-Sharqawy/agent-tutor · 67 tokens

agent-tutor-review

Spaced-repetition review sessions and retention tracking for subjects learned with the agent-tutor skill. Recall-first practice over lesson notes, adaptive FSRS-style interval scheduling (uncapped by default), honest retention verdicts, and a mixed mini-quiz per session. Use when the user wants to revise or practice…

Mohamed-El-Sharqawy/agent-tutor · 84 tokens

doceo

Turn anything the user wants to learn into a short, visual, plain-language teachable artifact (one HTML lesson page + a markdown lesson note), calibrated to what they already know and improving with every use. Use when the user runs /doceo, says "teach me X", "I don't understand X", "explain this simply", "make this…

eugeniughelbur/doceo · 90 tokens

knowledge-point-tree

Build a flat, exhaustive "point tree" of every enumerable knowledge point in a bounded body of material (a textbook, a certification syllabus, a spec, an API surface, a legal code), so a learner facing a brand-new field can see the whole board at once instead of drowning in unknown unknowns. Use this whenever someone…

SYQ1001/knowledge-point-tree · 191 tokens

codetrain

Use when the user wants to be taught/walked through code one tiny step at a time — triggers like "teach me this code", "walk me through this", "hold my hand", "explain step by step", "tutor me", "guide me through", "I want to learn this", or asks for a safe practice exercise to learn a concept.

InferHaven/agent-skills · 78 tokens