course

course is a skill for Claude Code from tuan3w/obsidian-vault-agent. It costs 111 tokens per session (3,921 once invoked), scanned A, original, MIT.

A course-note organizer that turns an online course page or lecture playlist into linked notes, combining slides, transcripts, and readings for each lecture.

In plain words
What is it for?
Use it to process a course URL, syllabus, university lecture list, or video playlist into a complete set of notes. It also helps refine notes you already have.
Why use it?
It removes the manual work of gathering materials and keeping notes consistent across a whole course. It can also improve existing lecture notes when they need clearer explanations or structure.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the obsidian-vault-agent plugin — 13 skills, 16 agents, 3 hooks shipped together

Good fit Use it to process a course URL, syllabus, university lecture list, or video playlist into a complete set of notes. It also helps refine notes you already have.

Compare 6 skills from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add tuan3w/obsidian-vault-agent
Claude Code
/plugin install obsidian-vault-agent

Made for: Claude Code.

Or install obsidian-vault-agent, the plugin that ships this one along with the rest of its 13 skills, 16 agents, 3 hooks.

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 course

README.md
[![agentmods](https://agentmods.dev/badge/skills/tuan3w/obsidian-vault-agent/course/github.svg)](https://agentmods.dev/skills/tuan3w/obsidian-vault-agent/course)
Your own site
<a href="https://agentmods.dev/skills/tuan3w/obsidian-vault-agent/course"><img src="https://agentmods.dev/badge/skills/tuan3w/obsidian-vault-agent/course/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 course

Your own site · 80×15
<a href="https://agentmods.dev/skills/tuan3w/obsidian-vault-agent/course"><img src="https://agentmods.dev/badge/skills/tuan3w/obsidian-vault-agent/course.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,921 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00111 $0.03921
Opus 5 $0.00056 $0.01961
Sonnet 5 $0.00022 $0.00784
Haiku 4.5 $0.00011 $0.00392

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

Security

Grade A, and why

course scanned grade A with 1 finding 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/extract_pdf_slides.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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sL "SLIDES_PDF_URL" -o "$SLIDES_DIR/lecture-${LECTURE_NUM}.pdf"
skills/course/SKILL.md · 448 lines

How it starts

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

Process mode (default): Crawl an online course page, extract the lecture schedule with all materials (slides PDFs, YouTube videos, readings), then process each lecture into a detailed vault-formatted note with embedded slide images and synthesized transcripts. Creates a Course index note linking everything together.

Refine mode: Re-read existing course lecture notes and improve them — deepen equation explanations, add missing analogies, fix structure, strengthen cross-references. Triggered when user says "refine", "improve", "fix", or references existing course notes rather than a URL.

This is an orchestrator — it coordinates downloading, extraction, and synthesis across multiple lectures, producing a complete course knowledge package in the vault.

<Use_When>

  • User shares a course URL (syllabus, schedule, or homepage)
  • User says "process this course" or "take notes on these lectures"
  • User pastes a university course page with a lecture list
  • User wants to batch-process a series of lectures from one course
  • User has a YouTube playlist of course lectures
  • User wants to refine/improve existing course notes ("refine mit diffusion notes", "improve L03") </Use_When>

<Do_Not_Use_When>

  • User has a single YouTube video (use /youtube)
  • User has a single local video file (use /lecture)
  • User wants to process an existing vault note that's NOT a lecture (use /process)
  • User wants a single paper summarized (use /paper) </Do_Not_Use_When>

Stage 1: CRAWL — Extract the Lecture List

Parse the course URL from $ARGUMENTS. If no URL, ask the user.

Fetch the course page and extract structured lecture data:

WebFetch(
  url="COURSE_URL",
  prompt="Extract the complete course structure as JSON. For each lecture/session, include:
    - number (int)
    - title (string)
    - date (string, if available)
    - slides_url (string or null — look for PDF links to slides/lecture notes)
    - video_url (string or null — look for YouTube links)
    - readings (array of {title, url} — papers, blog posts, textbook chapters)
    - description (string or null — any summary text)
  Also extract:
    - course_title (string)
    - course_code (string or null)
    - instructors (array of strings)
    - course_url (string — the page URL)
    - course_notes_url (string or null — if there's a single PDF of all course notes)
  Return ONLY valid JSON, no markdown fencing."
)

Parse the JSON response. If the page has relative URLs for slides/videos, resolve them against the course URL's base.

Handle edge cases:

  • If the page is a YouTube playlist: extract video IDs and titles from the playlist
  • If slides URLs are relative (e.g., ../docs/lecture_01.pdf): resolve to absolute URLs
  • If no structured schedule found: ask user to provide lecture list manually

Read the full file on GitHub · 448 lines

Files

What ships with it

2 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. 9d ago First seen · 448 lines · 111 tokens per session scan A 94fd2d17064f

Subscribe to this mod's changes

course is a skill published in the GitHub repository tuan3w/obsidian-vault-agent (39 stars, last pushed 5mo ago), licensed MIT. It adds 111 tokens to every session and 3,921 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.