Tools breakdown · June 2026

The Claude Skills that take the busywork out of building a course

Five Skills that handle the slow production work — the landing page, the slides, the PDFs, the visuals, the look — plus exactly where to get each one and how to install it. None of them write the course. That part stays yours.

Official and community skills, with install steps for each

There's a category of "AI course builders" that promise a finished course from one prompt. This isn't that. A Skill doesn't generate your course — it's a small add-on that makes Claude better at one specific job, and switches on automatically when that job comes up.

What follows are five Skills — some official, some the most popular ones the community has built — that map cleanly onto the production tasks around a course: the page that sells it, the slides inside it, the files students download, the graphics around it, and the styling that keeps it all consistent. The curriculum — the teaching, the order, the examples — isn't on this list, and that's deliberate. There's no Skill for it, and it's the part worth keeping in your hands.

First, the basics

What a Skill actually is

A Skill is a folder with a SKILL.md file inside it — a set of instructions, plus any templates or scripts that go with them. Claude reads the short description, and when your request matches, it loads the rest on demand. You don't trigger it manually; it activates when it fits the task.

Skills follow an open standard and work across Claude's products — the Claude apps (claude.ai, desktop), Claude Code, and the API. Anthropic publishes a set of them openly:

github.com/anthropics/skills →

Worth knowing

One of the five — pdf — is already built into the Claude apps on paid plans, so you just ask for it. The other four you download and add yourself: two from the community, two from Anthropic's repo. Both paths are covered at the end.

The five, at a glance

One Skill per job

  1. taste-skill — turns your offer into a sharp, non-generic landing page.
  2. frontend-slides — turns a lesson outline into clean web slides.
  3. pdf — produces the downloadables: workbooks, worksheets, certificates, lead magnets.
  4. canvas-design — makes the visuals: thumbnails and social graphics.
  5. theme-factory — applies one consistent theme across all of it.
Skill 01 · Your sales page

taste-skill

taste-skill
The job: build the page that sells the course
Leonxlnx/taste-skill · community · 31k+ stars

This is the most-starred third-party design skill on GitHub — the community's answer to AI interfaces that all look the same. It bills itself as:

The Anti-Slop Frontend Framework for AI Agents. — taste-skill, github.com/Leonxlnx/taste-skill

It upgrades what a coding agent produces — stronger layout, typography, motion and spacing instead of a boilerplate page — and explicitly covers landing pages, websites and brand identity. It ships variants (soft, minimalist, brutalist) and a 3-dial system for design variance, motion and density, so you steer the look instead of accepting the default. Describe your offer and the sales page comes out reading as designed, not generated.

Skill 02 · Your lesson slides

frontend-slides

frontend-slides
The job: turn a lesson outline into a slide deck
zarazhangrui/frontend-slides · community · 20k+ stars · v2.1.0 (May 2026)

A popular, actively maintained skill for building presentations as clean web pages. Its description:

A coding-agent skill for creating stunning HTML presentations — from scratch or by converting PowerPoint files. — frontend-slides SKILL.md

Hand it the bullet points for a module and it builds a single-file HTML slideshow — no external dependencies — with dozens of ready-made design systems to pick from instead of writing CSS. It also imports an existing .pptx, so a deck you already have can be rebuilt in a sharper style. A lesson goes from outline to presentable in one pass.

Skill 03 · Your downloadables

pdf

pdf
The job: produce the files students download
skills/pdf · built into the Claude apps

This is the Skill behind everything a learner saves or prints — and the lead magnet you collect emails with.

Use this skill whenever the user wants to do anything with PDF files… creating new PDFs, filling PDF forms… combining or merging multiple PDFs… extracting text/tables… — pdf SKILL.md

Workbooks, worksheets, fill-in templates, certificates of completion, the free guide at the top of your funnel — all of it is PDF work. It also fills and merges, so a stack of separate handouts can become one packaged download.

Skill 04 · Your visuals

canvas-design

canvas-design
The job: thumbnails and social graphics
skills/canvas-design · Anthropic skills repo

The visual layer around the course — the thumbnail, the launch graphics, the posters for social.

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. — canvas-design SKILL.md

It outputs designed .png and .pdf images, not clip art. One thing to set expectations on: it leans toward composed, gallery-style design rather than fast template filling — so it's strongest when you want a graphic that actually looks considered.

Skill 05 · The consistent look

theme-factory

theme-factory
The job: one look across slides, PDFs and landing page
skills/theme-factory · Anthropic skills repo

This is the one that stops your materials from looking like five different tools made them.

Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact… or can generate a new theme on-the-fly. — theme-factory SKILL.md

Pick one of its presets or have it generate a theme from your own colors and fonts, and the same look carries across the deck, the worksheet, and the landing page. It applies across the other Skills — so it's the glue, not a standalone output.

A note on naming

There's also a Skill called brand-guidelines — but it applies Anthropic's official brand colors and typography, not yours. For your own look, theme-factory is the one you want.

The honest gap

There's no Skill for the curriculum

Anthropic doesn't publish a Skill for course structure, curriculum, or lesson sequencing — and no amount of searching turns up an official one. Everything above is production: the wrapping around the teaching, not the teaching itself.

If you want Claude to follow your structure repeatedly, the move isn't to find a Skill — it's to make one. The skill-creator Skill walks you through building your own: you teach Claude your lesson format or worksheet structure once, and it follows that shape every time after. But the decisions inside — what to teach, in what order, with which examples — stay with you. That's the part a tool can't copy, because it's your expertise.

How to install

Getting these onto your account

Two paths, depending on whether you work in the Claude apps or in Claude Code.

If you use the Claude apps (claude.ai / desktop)

The pdf Skill is already built in on paid plans. You don't install anything; you just ask Claude to make the PDF and it uses it.

For the download-and-add Skills (taste-skill, frontend-slides, canvas-design, theme-factory):

  1. Download the Skill folder you want — the community ones from their repos (taste-skill, frontend-slides), the design ones from github.com/anthropics/skills — and zip the folder containing its SKILL.md.
  2. In the Claude app, open Settings → Capabilities and make sure Code execution and file creation is turned on.
  3. Find the Skills section, choose Upload skill, and select your zip.
  4. Toggle the Skill on. It now activates automatically when a request matches it.
Plan note

Uploading custom Skills is available on the paid Claude plans (Pro, Max, Team, Enterprise) with code execution enabled. On free, you get the built-in document Skills only. On Enterprise, an admin may need to enable Skills for the organization first.

If you use Claude Code (the CLI)

Skills live in a folder on your machine. Drop one in and it's detected automatically — no restart.

  • For all your projects: ~/.claude/skills/<skill-name>/SKILL.md
  • For one project only: .claude/skills/<skill-name>/SKILL.md inside that project

The community skills install in one line with the skills CLI:

npx skills add Leonxlnx/taste-skill
npx skills add zarazhangrui/frontend-slides

For the Anthropic skills, clone the repo and copy the folder you want into place:

git clone https://github.com/anthropics/skills.git
cp -r skills/skills/theme-factory ~/.claude/skills/

Either way, Claude Code picks it up in the current session. A Skill folder looks like this:

~/.claude/skills/theme-factory/
├── SKILL.md        (the instructions — required)
├── reference/      (optional templates or data)
└── scripts/        (optional helper code)

You can share a project's Skills with your team by committing the .claude/skills/ folder to version control.

One safety habit

Only add Skills from sources you trust — ones you wrote, or the official Anthropic repo. A Skill can instruct Claude to run code, so it's worth opening the SKILL.md and any bundled scripts before adding a Skill from somewhere unfamiliar.

Reference

Official links

About this breakdown

Prepared by the Kinescope team