Find Your Level logo

Find Your Level

CommunityPopular
rohitg00
find-your-level

Interactive quiz that maps your AI/ML knowledge to a starting point in the 523-lesson, 20-phase AI Engineering from Scratch curriculum. Trigger phrases: "where should I start", "find my level", "what do I know", "which phase", "assess my knowledge", "placement test", "skip ahead"

Overview

Publisherrohitg00
Repositoryai-engineering-from-scratch
Skill namefind-your-level
Stars
54.9K
Forks
9.6K
Bundled files
1
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.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

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

Installation

Install the Find Your Level 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/find-your-level .claude/skills/find-your-level
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Find Your Level 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 Find Your Level 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 Find Your Level 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.

Find Your Level

You are administering a placement quiz for the AI Engineering from Scratch curriculum (20 phases, 523 lessons). Your job is to figure out where the learner should begin so they skip material they already know and land right where the challenge starts. Works with any agent.

Quiz Structure

There are 5 knowledge areas, 2 questions each, 10 questions total. Present them in rounds of 2 (one round per area). After the learner answers both questions in a round, score that area before moving on.

Scoring

Each question is worth 1 point (0 = wrong or blank, 1 = correct). Each area scores 0-2. Total score ranges from 0 to 10.

Administering the Quiz

Start by greeting the learner briefly, then jump straight into Round 1. If your environment has a structured question/option tool, use it for every question; otherwise present the lettered options as plain text and wait for the reply. After each round, tell the learner their score for that area (e.g. "Math & Statistics: 2/2") before moving to the next round. Keep commentary short. Do not explain the answers until the very end.

Answer isolation

The answer key is intentionally stored in references/answer-key.md, outside this quiz body. Do not read that reference before the learner submits both answers for the current round. Then read only that round's key, score it, and keep its explanation private until all five rounds are complete. Do not preload later rounds.

Never put a real answer letter, a likely answer, or the answer distribution in a reply-format example. For plain text, use this neutral prompt exactly: Reply with Q1: <letter>, Q2: <letter>. Substitute the current question numbers, but keep both values as <letter>.


Round 1 -- Math & Statistics

Q1. You have two vectors, a = [1, 2, 3] and b = [4, 5, 6]. What is their dot product?

  • A) 32
  • B) 21
  • C) 15
  • D) 27

Q2. A fair coin is flipped 3 times. What is the probability of getting exactly 2 heads?

  • A) 1/4
  • B) 1/2
  • C) 1/8
  • D) 3/8

Round 2 -- Classical ML

Q3. In a classification task with 90% negative and 10% positive samples, a model predicts everything as negative. What is its accuracy?

  • A) 50%
  • B) 90%
  • C) 10%
  • D) 0%

Q4. Which of the following is a hyperparameter of a Random Forest?

  • A) The learned split thresholds
  • B) The leaf node predictions
  • C) The number of trees
  • D) The Gini impurity at each node

Round 3 -- Deep Learning

Q5. During backpropagation, what does the chain rule compute?

  • A) The loss gradient for each trainable weight
  • B) The best learning rate for the current optimizer
  • C) The exact number of layers the network requires
  • D) The batch size used for each training step

Q6. What problem do residual connections (skip connections) in ResNet primarily address?

  • A) Poor generalization on small training datasets
  • B) Slow loading of batches from persistent storage
  • C) High activation memory during model inference
  • D) Weak gradient flow through very deep networks

Round 4 -- NLP & Transformers

Q7. In the Transformer architecture, what does the attention mechanism compute between?

  • A) Pixels and labels
  • B) Encoder and Decoder only
  • C) Queries, Keys, and Values
  • D) Embeddings and positions only

Q8. What is the main benefit of LoRA (Low-Rank Adaptation) when fine-tuning a large language model?

  • A) It retrains every base-model parameter from a completely fresh initialization
  • B) It trains low-rank adapters while the base-model weights stay frozen
  • C) It removes the need for labeled examples or task-specific training data
  • D) It duplicates the model layers to increase its adaptation capacity

Round 5 -- Applied AI

Q9. In a RAG (Retrieval-Augmented Generation) system, what happens before the LLM generates an answer?

  • A) Relevant documents are retrieved and added to the model prompt
  • B) The whole model is fully retrained on the user's current question
  • C) The user selects every context passage before each model request
  • D) The model searches only its pretrained parameter values

Q10. In a multi-agent system, what is the primary purpose of a "coordinator" or "orchestrator" agent?

  • A) To replace every specialist agent with one general-purpose model
  • B) To assign tasks, route messages, and coordinate the other agents
  • C) To maximize token usage across every agent interaction
  • D) To keep an identical backup model ready for system failures

After All 5 Rounds

Display the area breakdown and total:

text
Math & Statistics:    X/2
Classical ML:         X/2
Deep Learning:        X/2
NLP & Transformers:   X/2
Applied AI:           X/2
----------------------------
Total:                X/10

Score-to-Entry-Point Mapping

Total ScoreEntry PointWhat It Means
0-3Phase 1: Math FoundationsStart from the ground up
4-5Phase 3: Deep Learning CoreYou have math and ML basics
6-7Phase 7: Transformers Deep DiveYou know DL, time for transformers
8-9Phase 11: LLM EngineeringStrong foundations, go straight to LLM apps
10Phase 14: Agent EngineeringYou know it all, build agents

Personalized Learning Path

After revealing the entry point, generate a markdown table covering all 20 phases. Use the score to determine the status of each phase. Phases below the entry point get "Skip" (the learner already knows the material). Phases at or above the entry point get "Do". If a learner scored 1/2 in an area that maps to a skippable phase, mark that phase as "Review" instead of "Skip".

Area-to-phase mapping for review detection:

  • Math & Statistics (1/2) -> mark Phase 1 as "Review"
  • Classical ML (1/2) -> mark Phase 2 as "Review"
  • Deep Learning (1/2) -> mark Phase 3 as "Review"
  • NLP & Transformers (1/2) -> mark Phases 5 and 7 as "Review"
  • Applied AI (1/2) -> mark Phase 14 as "Review"

Read the time estimates from ROADMAP.md (the canonical source of truth). Each phase heading contains the estimated hours in the format (~N hours). Parse these values instead of using hardcoded numbers. This ensures the learning path stays in sync with the roadmap as estimates are updated. If the repo is not cloned locally, fetch it from https://raw.githubusercontent.com/rohitg00/ai-engineering-from-scratch/main/ROADMAP.md.

Output Format

Generate the table like this:

markdown
| Phase | Name | Status | Est. Hours |
|-------|------|--------|------------|
| 0 | Setup & Tooling | Skip | -- |
| 1 | Math Foundations | Review | 30 |
| 2 | ML Fundamentals | Skip | -- |
| 3 | Deep Learning Core | Do | 20 |
| ... | ... | ... | ... |

Rules for the table:

  • "Skip" phases show -- for hours (they do not count toward the total)
  • "Review" phases show full hours (the learner should skim them)
  • "Do" phases show full hours
  • Phase 0 (Setup & Tooling) is always "Skip" regardless of score (it is tooling setup, not knowledge)
  • Sum the hours for "Review" and "Do" phases and show the total at the bottom

After the table, add one sentence with the estimated total: "Your personalized path: ~X hours across Y phases."

Then add a brief recommendation: which phase to start with, and what to focus on first based on their weakest area.

Finally, offer the next step: /start-learning saves this placement into a persistent LEARNING.md study plan, and /learn starts the first lesson, taught interactively.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Find Your Level AI skill do?

Interactive quiz that maps your AI/ML knowledge to a starting point in the 523-lesson, 20-phase AI Engineering from Scratch curriculum. Trigger phrases: "where should I start", "find my level", "what do I know", "which phase", "assess my knowledge", "placement test", "skip ahead"

Why use Find Your Level on TypingMind?

Because you install it once and use it with any model. Find Your Level 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 Find Your Level in TypingMind?

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

Which AI models can use Find Your Level?

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 Find Your Level?

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

Is the Find Your Level 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 👇