Gojiberry AI
AI agents that find and contact high-intent leads for you
Try Gojiberry free →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Runable
One AI agent to build, run, and grow your business
Try Runable free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
Runable
One AI agent to build, run, and grow your business
Try Runable free →
OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Sponsor here
9/10 sponsor slots taken — 1 left
Claim it →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/rohitg00/ai-engineering-from-scratch/find-your-level
find-your-level logo

find-your-level

rohitg00/ai-engineering-from-scratch
888 installs46K stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/rohitg00/ai-engineering-from-scratch --skill find-your-level

Summary

>

SKILL.md

Find Your Level

You are administering a placement quiz for the AI Engineering from Scratch curriculum (20 phases, 503 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.

---

Round 1 -- Math & Statistics

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

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

Correct: B) 32 (14 + 25 + 3*6 = 32)

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

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

Correct: B) 3/8 (C(3,2) * (1/2)^3 = 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) 10%
  • C) 90%
  • D) 0%

Correct: C) 90% (it gets all negatives right, all positives wrong)

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

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

Correct: B) The number of trees

---

Round 3 -- Deep Learning

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

  • A) The optimal learning rate
  • B) The gradient of the loss with respect to each weight
  • C) The number of layers needed
  • D) The batch size

Correct: B) The gradient of the loss with respect to each weight

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

  • A) Overfitting on small datasets
  • B) Vanishing gradients in deep networks
  • C) Slow data loading
  • D) High memory usage

Correct: B) Vanishing gradients in deep networks

---

Round 4 -- NLP & Transformers

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

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

Correct: B) Queries, Keys, and Values

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

  • A) It trains all parameters from scratch
  • B) It freezes most weights and trains small low-rank update matrices
  • C) It removes the need for any training data
  • D) It doubles the model size for better results

Correct: B) It freezes most weights and trains small low-rank update matrices

---

Round 5 -- Applied AI

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

  • A) The model is retrained on the query
  • B) Relevant documents are retrieved and injected into the prompt
  • C) The user manually selects context
  • D) The model searches its own weights

Correct: B) Relevant documents are retrieved and injected into the prompt

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

  • A) To replace all other agents
  • B) To assign tasks, route messages, and manage agent collaboration
  • C) To increase token usage
  • D) To serve as a backup model

Correct: B) To assign tasks, route messages, and manage agent collaboration

---

After All 5 Rounds

Display the area breakdown and total:

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:

| 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.

Score

0–100
57/ 100

Grade

C

Popularity17/30

888 installs — growing adoption. Source repo has 46,463 GitHub stars.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Find Your Level skill score badge previewScore badge

Markdown

[![Find Your Level skill](https://www.claudemarket.ai/skills/rohitg00/ai-engineering-from-scratch/find-your-level/badges/score.svg)](https://www.claudemarket.ai/skills/rohitg00/ai-engineering-from-scratch/find-your-level)

HTML

<a href="https://www.claudemarket.ai/skills/rohitg00/ai-engineering-from-scratch/find-your-level"><img src="https://www.claudemarket.ai/skills/rohitg00/ai-engineering-from-scratch/find-your-level/badges/score.svg" alt="Find Your Level skill"/></a>

Find Your Level FAQ

How do I install the Find Your Level skill?

Run “npx skills add https://github.com/rohitg00/ai-engineering-from-scratch --skill find-your-level” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Find Your Level skill do?

> The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Find Your Level skill free?

Yes. Find Your Level is a free, open-source skill published from rohitg00/ai-engineering-from-scratch. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Find Your Level work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Find Your Level works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.9M installsInstall
wayfinder logo

wayfinder

mattpocock/skills

275K installsInstall
grill-me logo

grill-me

mattpocock/skills

817K installsInstall
frontend-design logo

frontend-design

anthropics/skills

762K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

696K installsInstall
improve-codebase-architecture logo

improve-codebase-architecture

mattpocock/skills

671K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideHow To Find The Right Openclaw Skill For Your ProjectGuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before Installing

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins
  • Browse Marketplaces
  • Newsletter

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed