Companion skills for Vercel Academy courses. Install with any coding agent that supports the Skills standard.
Discover courses, guided learning, progress tracking. Install globally so it's available in any project:
npx skills add vercel-labs/academy-skills --skill=academy -g -yEach course has a companion skill with a project wizard, progress detection, and lesson-by-lesson guidance. Install in your project directory when you start a course:
Building Filesystem Agents — Build agents that navigate filesystems with bash to answer questions about structured data.
npx skills add vercel-labs/academy-skills --skill=filesystem-agents -yBuilding Slack Agents — Build and deploy a Slack agent in one session.
npx skills add vercel-labs/academy-skills --skill=slack-agents -ySubscription Store — Build a subscription storefront with Next.js, Supabase, and Stripe.
npx skills add vercel-labs/academy-skills --skill=subscription-store -yskills/
academy/ → core: discovery + learning companion
SKILL.md
slack-agents/ → course: scaffold + wizard + teaching
SKILL.md
references/
filesystem-agents/ → course: teaching + progress detection
SKILL.md
references/
subscription-store/ → course: guided build
SKILL.md
Course skills fetch lesson content from Academy's .md endpoints at runtime:
/academy/llms.txt → course index
/academy/<course>.md → course overview
/academy/<course>/<lesson>.md → lesson content
/academy/llms-full.txt → bulk export
- Create
skills/<course-slug>/SKILL.md - Define the curriculum map, progress detection, and slash commands
- Add reference docs in
skills/<course-slug>/references/ - Test with a simulated student walkthrough
See skills/filesystem-agents/ for the reference implementation.