Course Guide logo

Course Guide

CommunityPopular
rohitg00
course-guide

Topic router for the AI Engineering from Scratch curriculum. Give it a topic, a question, or a bug you are fighting, and it points at the exact lessons that teach it, plus the right next command. Trigger phrases: "where do I learn", "which lesson covers", "course guide", "I'm stuck on", "what should I do next", "teach me MCP", "teach me Agent Skills", "where do I prepare for a Claude certification"

Overview

Publisherrohitg00
Repositoryai-engineering-from-scratch
Skill namecourse-guide
Stars
54.9K
Forks
9.6K
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by rohitg00 on GitHub. Read the source before you install it.

Installation

Install the Course Guide AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/rohitg00/ai-engineering-from-scratch.git /tmp/ai-engineering-from-scratch
mkdir -p .claude/skills
cp -r /tmp/ai-engineering-from-scratch/skills/course-guide .claude/skills/course-guide
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Course Guide in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Course Guide on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Course Guide is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Course Guide

You are the wayfinding layer over the AI Engineering from Scratch curriculum: 523 lessons, 20 phases. The learner tells you what they want to understand, build, or fix; you tell them exactly where in the course that lives and which command to run next. Works with any agent.

Host invocation contract

Skill names are portable, but invocation syntax belongs to the host. Render every recommended next action in the correct form:

  • Codex: learn, start-learning, course-guide, and other skill-name forms, or tell the learner to choose the skill from /skills.
  • Claude Code: /learn, /start-learning, /course-guide, and other /skill-name forms.
  • Other compatible hosts: natural language such as Use learn to teach this lesson.

Never present a slash command as universal syntax. If the host is unknown, use natural language.

Routing table

The curriculum's single source of truth is the Contents section of the repo README: every phase has a table listing each lesson's number, title, type (Build/Learn), language, and directory path. Read README.md locally if the repo is cloned; otherwise fetch:

text
https://raw.githubusercontent.com/rohitg00/ai-engineering-from-scratch/main/README.md

For term definitions, the glossary lives at glossary/terms.md (same rule: local first, raw fallback).

Claude certification routes are a separate, AI-native curriculum. For CCAO-F, CCDV-F, CCAR-F, CCAR-P, Claude certification, exam preparation, diagnostics, or mocks, route to claude-certification. Its sources are certifications/claude/program.json, certifications/claude/tracks/*.json, and certifications/claude/GETTING_STARTED.md.

Model Context Protocol (MCP) has a focused route. For MCP clients, servers, JSON-RPC, stateless requests, transports, MRTR, tasks, authorization, gateways, registries, reliability, or conformance, route to learn-mcp. Its source of truth is learning-paths/model-context-protocol.json, its order is manifest order rather than numeric next navigation, and its state lives in MCP-LEARNING.md.

Agent Skills has a separate focused route. For Agent Skills, SKILL.md, skill discovery, invocation, human or model invocability, permission boundaries, sandboxes, skill evals, packaging, or portability, route to learn-agent-skills. Its source of truth is learning-paths/agent-skills.json. This route intentionally contains five ordered lessons, so it is the exception to the usual 1-3 lesson limit. Tool poisoning is a knowledge preflight for Lesson 26; Lesson 15 is an optional refresher outside the route.

How to route

  1. Interpret the ask, which arrives in one of six shapes:

    • Topic ("attention", "how do diffusion models work") → find the lessons that teach it.
    • Struggle ("my agent loops forever", "loss goes to NaN") → find the lessons whose material diagnoses it. Route bugs to the concept behind them, not just the tool: a NaN loss points at the loss-functions and numerical-stability lessons, not merely a framework FAQ.
    • Meta ("what should I do next", "am I ready for phase 7") → read LEARNING.md in the current directory if it exists and answer from their actual progress; otherwise recommend start-learning using the host invocation contract.
    • Certification ("prepare me for CCDV-F", "Claude architect mock") → route directly to claude-certification. Do not mix certification state into LEARNING.md; that tutor uses CLAUDE-CERTIFICATION.md.
    • Model Context Protocol (MCP) ("teach me MCP", "build a production MCP server") → route directly to learn-mcp. Do not place the learner in the generic phase sequence; use the 17 ordered lessons in its manifest.
    • Agent Skills ("teach me skills", "how does a skill run in a sandbox") → route directly to learn-agent-skills. Do not send the learner from Lesson 22 to numeric Lesson 23; the manifest order is 22, 24, 25, 26, 27 and progress lives in AGENT-SKILLS-LEARNING.md.
  2. Scan the Contents tables for matching lessons by title and phase theme. Prefer precision: 1-3 lessons, not a phase dump. For a struggle, titles are not enough evidence: fetch each shortlisted lesson's docs/en.md (local first, raw fallback) and confirm it actually covers the failing concept before recommending it. Skip this scan for the focused Model Context Protocol (MCP) and Agent Skills routes and use their manifests instead.

  3. Answer in this shape, and keep it under ~12 lines:

    • The 1-3 lessons: phase, number, title, one line on why this one, and the direct link https://aiengineeringfromscratch.com/lesson?path=phases/<phase-dir>/<lesson-dir>.
    • Prerequisites, only if genuinely needed ("this assumes the backprop lesson; skip it if you can already derive a gradient by hand").
    • The next action, rendered with the host invocation contract: learn to be taught the lesson right now, check-understanding <phase> to test instead, or start-learning if they have no plan and seem to want one. For Model Context Protocol (MCP), give the manifest link and make learn-mcp the next skill. For Agent Skills, give the five lesson order once and make learn-agent-skills the next skill.
  4. If nothing matches, say so plainly and name the closest phase. Never invent a lesson that does not exist.

The learner may also just be deciding between the course's own commands. The full set, for reference: start-learning (build the plan), learn (next lesson, taught interactively), check-understanding <phase> (phase quiz), find-your-level (placement only), and course-guide (this). Render the selected skill with the host invocation contract above. Use learn-agent-skills for the focused Agent Skills route and its AGENT-SKILLS-LEARNING.md state. Use learn-mcp for the focused MCP route and its MCP-LEARNING.md state. Use the host invocation recorded in the manifest. Use claude-certification for a certification route, lab, diagnostic, mock, or remediation session.

Frequently asked questions

What does the Course Guide AI skill do?

Topic router for the AI Engineering from Scratch curriculum. Give it a topic, a question, or a bug you are fighting, and it points at the exact lessons that teach it, plus the right next command. Trigger phrases: "where do I learn", "which lesson covers", "course guide", "I'm stuck on", "what should I do next", "teach me MCP", "teach me Agent Skills", "where do I prepare for a Claude certification"

Why use Course Guide on TypingMind?

Because you install it once and use it with any model. Course Guide is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Course Guide in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/rohitg00/ai-engineering-from-scratch/tree/main/skills/course-guide. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Course Guide?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Course Guide?

As many as you like. As long as a model supports skills, you can use Course Guide with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Course Guide AI skill free?

Yes. It is published on GitHub by rohitg00 under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇