anthropic-skilljar-extractor

anthropic-skilljar-extractor is a skill for Claude Code, Codex from maystudios/claude-skills. It costs 107 tokens per session (635 once invoked), scanned A, original, MIT.

A course extractor for Anthropic Academy, an online learning site, that converts a Skilljar course into a folder of Markdown lesson files. It also downloads the course's diagrams and images.

In plain words
What is it for?
Use it with an Anthropic Skilljar course URL to create section folders, lesson notes, a course README, embedded images, alt text, headings, code blocks, and comparison tables.
Why use it?
It saves course material in a structured, local format instead of leaving it only in the web course interface. The instructions cover organising lessons, describing diagrams, and improving the generated Markdown.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it with an Anthropic Skilljar course URL to create section folders, lesson notes, a course README, embedded images, alt text, headings, code blocks, and comparison tables.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/maystudios/claude-skills/anthropic-skilljar-extractor
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 maystudios/claude-skills --skill anthropic-skilljar-extractor
Clone the repo
git clone --depth 1 https://github.com/maystudios/claude-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 anthropic-skilljar-extractor

README.md
[![agentmods](https://agentmods.dev/badge/skills/maystudios/claude-skills/anthropic-skilljar-extractor/github.svg)](https://agentmods.dev/skills/maystudios/claude-skills/anthropic-skilljar-extractor)
Your own site
<a href="https://agentmods.dev/skills/maystudios/claude-skills/anthropic-skilljar-extractor"><img src="https://agentmods.dev/badge/skills/maystudios/claude-skills/anthropic-skilljar-extractor/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 anthropic-skilljar-extractor

Your own site · 80×15
<a href="https://agentmods.dev/skills/maystudios/claude-skills/anthropic-skilljar-extractor"><img src="https://agentmods.dev/badge/skills/maystudios/claude-skills/anthropic-skilljar-extractor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 635 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 pass 7 Sept 2026
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.00107 $0.00635
Opus 5 $0.00053 $0.00318
Sonnet 5 $0.00021 $0.00127
Haiku 4.5 $0.00011 $0.00064

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

Security

Grade A, and why

anthropic-skilljar-extractor 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 10d ago.

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

anthropic-skilljar-extractor/SKILL.md · 70 lines

How it starts

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

Anthropic Skilljar Course Extractor

Step 1: Run the Extraction Script

python3 scripts/extract_course.py \
  <skilljar_url> <output_dir>

This produces:

<course-slug>/
├── README.md
├── 01-<section>/
│   ├── 01-<lesson>.md
│   └── ...
└── assets/images/   ← downloaded .webp diagrams

Step 2: Describe Diagrams

For each full-size .webp in assets/images/ (not -medium.webp):

  • Use the Read tool to view it visually
  • Add a detailed alt-text block and embed with ![desc](../assets/images/file.webp) in the relevant lesson markdown

Assign images to lessons based on topic — architecture diagrams go in intro lessons, code screenshots in hands-on lessons, summary slides in review lessons.

Step 3: Enrich Lesson Markdown

The script embeds bullet-point notes. Expand each lesson file:

  • Add proper ## headings per concept
  • Format code examples in fenced code blocks with language tags
  • Convert "Key: value" lines to **Key:** value bold format
  • Add tables for comparisons (e.g., message types, primitives)
  • Keep the frontmatter block (Section, URL, Lesson Type)

Step 4: Enhance README

Add to the auto-generated README:

  • Full course description paragraph
  • Key concepts reference table
  • Quick-reference code snippets
  • Diagram index with one-line descriptions per image

How the Script Works (for debugging)

  • Fetches page HTML; extracts window.__chatData (LLM notes embedded in every Skilljar page)
  • Parses sidebar <ul class="dp-curriculum"> for section/lesson structure
  • Downloads CloudFront images from d7juhi4i8fsw0.cloudfront.net/images/<slug>/
  • Deduplicates lessons by URL (curriculum HTML appears twice in page source)
  • Fuzzy-matches notes to lessons by title similarity

If Login Is Required

Individual lesson pages always require auth — do not fetch them. If the course landing page itself requires login (script finds 0 lessons):

  1. Ask user to save the page HTML (browser → Save As → Webpage, HTML Only)
  2. Modify script's fetch() to open(path).read() and pass the local file

Read the full file on GitHub · 70 lines

Files

What ships with it

1 file 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. 10d ago First seen · 70 lines · 107 tokens per session scan A d4ea2e989d64

Subscribe to this mod's changes

anthropic-skilljar-extractor is a skill published in the GitHub repository maystudios/claude-skills (22 stars, last pushed 26d ago), licensed MIT. It adds 107 tokens to every session and 635 once invoked, about $0.0005 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

vibe-coding-architecture

A plain-language framework for understanding software architecture and choosing between technical approaches.

Junliu1066/vibe-coding-kit · 193 tokens

react-senior-interview

Interactive 10-question multiple-choice React interview, by theSeniorDev — drawn from the same principles as react-senior-code-review. Asks which level you're interviewing for (junior/mid/senior) and shifts difficulty to match. Per-question feedback. Final score with a breakdown by dimension and personalized study…

the-senior-dev/senior-dev-skills · 113 tokens

baoyu-comic

A tool for creating original educational comics that explain knowledge or ideas through multiple illustrated panels. It supports different art styles and tones and can create several comics in one batch.

JimLiu/baoyu-skills · 61 tokens

skill-creation-walkthrough

Step-by-step guide for creating your own Claude Skills, from deciding whether a skill is the right tool to writing the SKILL.md file, structuring reference material, and making it trigger reliably. Use when you want to package a workflow, framework, or repeated task into a reusable Skill, when an existing skill is not…

rampstackco/claude-skills · 135 tokens

memstack-marketing-webinar-script

Use this skill when the user says 'webinar script', 'webinar', 'live presentation', 'teach-to-sell', or needs a timestamped presentation script with slide notes, presenter cues, and replay email sequence. Do NOT use for launch plans or static sales page copy.

cwinvestments/memstack · 65 tokens

elixir-idioms

OTP/BEAM patterns and Elixir idioms — GenServer, Supervisor, Task, Registry, pattern matching, with chains, pipes. Use when designing processes or debugging BEAM issues.

oliver-kriska/claude-elixir-phoenix · 44 tokens