Sandbox
@bevibing/tutor-skills

Claude Code skills for Obsidian study vaults

This repo adds two Claude Code skills: `/tutor-setup` turns documents or a codebase into a structured Obsidian StudyVault, and `/tutor` runs quiz sessions against that vault. The vault includes dashboards, concept notes, practice questions, and cross-links so you can review and test what you learned.

1,135 stars96 forksShellUpdated 6mo ago
Who it's for

Builders who want their agent to turn source material into study notes and quiz them later.

What it delivers

You can go from raw documents or a codebase to a study vault, then review weak concepts with targeted quizzes.

What it does

Study vault generation

`/tutor-setup` scans a working directory and creates an Obsidian StudyVault from documents or source code.

Document mode

For PDFs, text files, web pages, EPUBs, and markdown, it builds topic notes, dashboards, practice questions, and wiki-links.

Codebase mode

For source projects, it maps architecture, modules, request flows, and onboarding exercises.

Interactive quizzes

`/tutor` runs four-question quiz rounds, grades answers, explains mistakes, and updates progress.

Concept-level tracking

It tracks weak, fair, good, mastered, and unmeasured areas with concept-level notes and error history.

How to get it

  1. 1Run
    npx skills add RoundTable02/tutor-skills
  2. 2Run
    git clone https://github.com/RoundTable02/tutor-skills.git
    cd tutor-skills
    ./install.sh
  3. 3Run
    cd ~/study-materials/          # or any source code project
    claude
    > /tutor-setup
  4. 4Run
    claude
    > /tutor
  5. 5Generated structure
    StudyVault/
      00-Dashboard/          # MOC + Quick Reference + Exam Traps
      01-<Topic1>/           # Concept notes + practice questions
      02-<Topic2>/
      ...
  6. 6Generated structure
    StudyVault/
      00-Dashboard/          # MOC + Quick Reference + Getting Started
      01-Architecture/       # System overview, request flow, data flow
      02-<Module1>/          # Per-module notes
      03-<Module2>/
      ...
      NN-DevOps/             # Build, deploy, CI/CD
      NN+1-Exercises/        # Onboarding exercises

README

tutor-skill

License: MIT Claude Code Install with npx skills

Two Claude Code skills that turn any knowledge source into an Obsidian StudyVault and then quiz you on it — closing the loop from content to comprehension.

How It Works

  Documents / Code                    Obsidian                    Quiz Session
 ┌──────────────────┐           ┌──────────────────┐          ┌──────────────────┐
 │  PDF, MD, HTML,  │  /tutor   │   StudyVault/    │  /tutor  │  4 questions per  │
 │  EPUB, source    │──setup──▶ │   structured     │────────▶ │  round, graded,   │
 │  code projects   │           │   interlinked    │          │  concept tracking  │
 └──────────────────┘           │   notes + MOC    │          └────────┬─────────┘
                                └──────────────────┘                   │
                                         ▲                             │
                                         └─────── progress updates ────┘

Skills Overview

SkillCommandPurposeInputOutput
tutor-setup/tutor-setupGenerate a StudyVaultDocuments or source codeObsidian vault with notes, dashboards, practice questions
tutor/tutorInteractive quiz tutorAn existing StudyVaultQuiz sessions with concept-level progress tracking

Quick Start

One-line install (recommended)

npx skills add RoundTable02/tutor-skills

Requires npx skills — works with Claude Code, Cursor, Windsurf, and more.

Manual install

git clone https://github.com/RoundTable02/tutor-skills.git
cd tutor-skills
./install.sh

Step 1: Generate a StudyVault

cd ~/study-materials/          # or any source code project
claude
> /tutor-setup

Step 2: Start Quizzing

claude
> /tutor

tutor-setup

Transforms knowledge sources into a structured Obsidian StudyVault. Mode is auto-detected:

Marker FoundMode
package.json, pom.xml, build.gradle, Cargo.toml, go.mod, etc.Codebase Mode
No project markersDocument Mode

Document Mode

Turns PDFs, text files, web pages, and other sources into comprehensive study notes.

  • Auto-scans working directory for source files (PDF, TXT, MD, HTML, EPUB)
  • Extracts and analyzes content with verified source mapping
  • Generates concept notes with comparison tables, ASCII diagrams, and exam patterns
  • Creates practice questions with hidden answers (active recall via fold callouts)
  • Builds a dashboard with Map of Content (MOC), Quick Reference, and Exam Traps
  • Full interlinking with [[wiki-links]] across all notes

Phases

PhaseNameDescription
D1Source DiscoveryScan, extract, and verify source content mapping
D2Content AnalysisBuild topic hierarchy and dependency map
D3Tag StandardDefine English kebab-case tag registry
D4Vault StructureCreate numbered folders per topic
D5DashboardMOC, Quick Reference, Exam Traps
D6Concept NotesStructured notes with tables, diagrams, callouts
D7Practice QuestionsActive recall with fold callouts (8+ per topic)
D8InterlinkingCross-reference all notes with wiki-links
D9Self-ReviewVerify against quality checklist

Generated structure

StudyVault/
  00-Dashboard/          # MOC + Quick Reference + Exam Traps
  01-<Topic1>/           # Concept notes + practice questions
  02-<Topic2>/
  ...

Codebase Mode

Generates a new-developer onboarding vault from a source code project.

  • Auto-detects tech stack, architecture patterns, and module boundaries
  • Traces request flows and data flows end-to-end
  • Creates per-module notes with key files, public interfaces, and dependency maps
  • Generates onboarding exercises (code reading, configuration, debugging, extension)
  • Builds a dashboard with architecture overview, module map, API surface, and getting started guide

Phases

PhaseNameDescription
C1Project ExplorationScan files, detect tech stack, map layout
C2Architecture AnalysisIdentify patterns, trace flows, map modules
C3Tag StandardDefine #arch-*, #module-*, #pattern-* registry
C4Vault StructureCreate dashboard + per-module folders
C5DashboardMOC with module map, API surface, getting started
C6Module NotesPurpose, key files, interface, flow, dependencies
C7ExercisesCode reading, config, debugging, extension tasks
C8InterlinkingCross-link all modules and exercises
C9Self-ReviewVerify against quality checklist

Generated structure

StudyVault/
  00-Dashboard/          # MOC + Quick Reference + Getting Started
  01-Architecture/       # System overview, request flow, data flow
  02-<Module1>/          # Per-module notes
  03-<Module2>/
  ...
  NN-DevOps/             # Build, deploy, CI/CD
  NN+1-Exercises/        # Onboarding exercises

tutor

Interactive quiz tutor that tracks what you know and don't know at the concept level. Works with any StudyVault generated by tutor-setup.

Session Types

TypeWhen AvailableFocus
DiagnosticUnmeasured areas (⬜) existBroad assessment of new areas
Drill weak areasWeak areas (🟥/🟨) existTargeted practice on struggles
Choose a sectionAlwaysStudy any area on demand
Hard-mode reviewAll areas 🟩/🟦Challenge mastered material

Quiz Flow

  1. Detects your StudyVault and reads the learning dashboard
  2. Presents session options based on your current proficiency
  3. Delivers 4 questions per round (4 options each, zero hints)
  4. Grades answers and explains mistakes
  5. Updates concept files and dashboard automatically

Progress Tracking

Proficiency is tracked per area with emoji badges:

BadgeLevelRate
🟥Weak0–39%
🟨Fair40–69%
🟩Good70–89%
🟦Mastered90–100%
UnmeasuredNo data

Concept-level tracking stores attempts, correct count, last tested date, and error notes for wrong answers — so drill sessions rephrase missed concepts in new contexts.


The Learning Cycle

           ┌────────────────────────────┐
           │   /tutor-setup             │
           │   Generate StudyVault      │
           └──────────┬─────────────────┘
                      │
                      ▼
           ┌────────────────────────────┐
           │   Read & review notes      │
           │   in Obsidian              │
           └──────────┬─────────────────┘
                      │
                      ▼
           ┌────────────────────────────┐
           │   /tutor                   │
           │   Take diagnostic quiz     │◀──────────┐
           └──────────┬─────────────────┘           │
                      │                              │
                      ▼                              │
           ┌────────────────────────────┐           │
           │   Review weak areas        │           │
           │   in Obsidian              │           │
           └──────────┬─────────────────┘           │
                      │                              │
                      ▼                              │
           ┌────────────────────────────┐           │
           │   /tutor                   │           │
           │   Drill weak concepts      │───────────┘
           └────────────────────────────┘

Requirements

Repository Structure

tutor-skill/
├── skills/
│   ├── tutor-setup/              # Vault generation skill
│   │   ├── SKILL.md
│   │   └── references/
│   │       ├── templates.md
│   │       ├── codebase-workflow.md
│   │       ├── quality-checklist.md
│   │       └── codebase-templates.md
│   └── tutor/                    # Interactive quiz skill
│       ├── SKILL.md
│       └── references/
│           └── quiz-rules.md
├── examples/
├── install.sh
├── uninstall.sh
├── README.md
└── LICENSE

Uninstall

./uninstall.sh

Or manually:

rm -rf ~/.claude/skills/tutor-setup
rm -rf ~/.claude/skills/tutor

License

MIT

Files in the repo

Repository payload7 top-level entries
  • examples
  • skills
  • .gitignore
  • install.sh
  • LICENSE
  • README.md
  • uninstall.sh

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k