Personal Active Learning & Evaluation Engine
A deterministic, Spaced-Repetition (SM-2) & Directed Acyclic Graph (DAG) study engine for Obsidian vaults.
Complete interactive documentation with architecture guides, interactive Mermaid diagrams, and CLI command references is available at https://kuldeep2822k.github.io/cli/.
PALEE helps you learn efficiently by:
- Recommending what to study next based on dependencies and SM-2 scheduling
- Tracking mastery across conceptual, practical, debug, and teaching dimensions
- Scheduling reviews using scientifically-proven spaced repetition
- Integrating natively with Obsidian notes
- Providing AI-powered Feynman testing
- Remembering learning context between sessions through durable session logs and a compact hot-memory file
npm install -g @kuldeep2822k/paleepalee config set-vault ~/Documents/Obsidian/Learningpalee config set-provider
# base_url: https://opencode.ai/zen/v1
# api_key: YOUR_FREE_TIER_KEY
# model: nemotron-3-ultra-free# See what to study next
palee next
# Build a study session
palee plan
# Track your progress
palee progress- Dependency-aware: Never study topics before prerequisites
- Spaced repetition: Reviews scheduled using SM-2 algorithm
- Unlock-based scoring: Topics scored by how many they unlock
- Native vault support: Works directly with your existing notes
- Frontmatter metadata: Study data stored in note frontmatter
- Zero duplication: Vault IS the data store
- Feynman method: AI tests your ability to explain concepts
- Multi-dimensional grading: Conceptual, practical, debug, teaching scores
- Tool-constrained: AI receives read-only validated context tools; PALEE owns confirmed writes
- Mastery visualization: Track mastery across all topics
- Review scheduling: Never miss a review
- Track analytics: See your learning patterns
- Durable session logs: Every confirmed session is saved as a searchable Obsidian note
- Hot memory: The next session starts with a concise summary of the current learning position
- Stable references: Topics, sessions, and durable decisions use immutable IDs
# 1. Adopt your existing notes
palee adopt "Docker Fundamentals.md"
# 2. See what to learn next
palee next
# → Learn: Pod Lifecycle in Kubernetes
# 3. Test your understanding
palee test T-pod-lifecycle-k8s
# → AI asks you to explain the concept
# → You write your answer
# → AI grades and suggests scores
# → You confirm and record mastery
# 4. Track progress
palee progress
# → 23.45% overall mastery| Command | Description |
|---|---|
palee next |
Show next recommended action |
palee plan |
Build study session plan |
palee progress |
View mastery statistics |
palee test <topic> |
AI-powered Feynman test |
palee tutor <topic> |
Interactive tutoring session |
palee review <topic> --quality N |
Record review result (0-5) |
palee session start |
Resume learning from hot memory; starts AI tutor if provider is configured |
palee session end |
Save a confirmed session summary and refresh hot memory |
palee migrate |
Upgrade versioned PALEE data safely |
palee adopt <note> |
Adopt Obsidian note into PALEE |
palee roadmap --from <file> |
Validate and import a user-provided roadmap (no AI, no network) |
palee roadmap |
Build a personalized roadmap through a guided AI interview |
palee dashboard |
Show system status |
palee validate |
Check data integrity |
palee config set-vault <path> |
Set the Obsidian vault path |
palee config set-provider |
Configure AI provider (base_url, api_key, model) |
palee config show |
Display current config — vault path, provider endpoint, model; never prints api_key |
palee config set-provider
# Supports any OpenAI-compatible endpoint
# Recommended free option: OpenCode Zenpalee config set-vault /path/to/obsidian/vault
# PALEE will scan for notes with frontmatterEach topic note stores flat YAML frontmatter directly inside your Obsidian vault:
---
palee_schema: 1
palee_id: T-docker-volumes
title: Docker Volumes
difficulty: beginner
depends_on:
- T-docker-basics
topic_mastery: 0.725
conceptual: 0.85
practical: 0.70
debug: 0.60
feynman: 0.75
assessed_at: 2026-01-15
ease_factor: 2.36
interval_days: 6
repetition: 1
lapses: 0
last_quality: 4
last_reviewed_at: 2026-01-15
due_at: 2026-01-21
---Frontmatter stores flat keys directly for clean Obsidian parsing and fast atomic updates. Programmatic TypeScript interfaces (Topic) map these fields into structured conceptual and review metrics.
topic_mastery is derived from assessment scores ((conceptual + practical + debug + 2*feynman) / 5), independent from SM-2 recall scheduling. Newly adopted notes begin with topic_mastery: 0.0 and null review fields.
Session memory is stored inside the connected vault:
.palee/
├── hot.md
├── sessions/
└── index.md
hot.md is capped at 250 words and points to the latest full session. Full session notes preserve the learning history without forcing every future AI prompt to load the entire log.
See memory_design.md for the session-memory format, lifecycle, stable IDs, and recovery rules.
See storage_design.md for frontmatter preservation, atomic writes, vault traversal, validation, and cache behavior.
See invariants.md for the acceptance-test blueprint that must pass before Phase 1 is considered complete.
See roadmap_design.md for the imported-roadmap and guided personalized-roadmap contracts.
PALEE is built on three principles:
- Deterministic core: Reliable SM-2 scheduling and dependency tracking
- AI augmentation: Intelligent tutoring constrained to validated actions
- Human oversight: You confirm all consequential actions
PALEE uses standard exit codes to facilitate scripting:
0: Success2: Usage error (e.g., missing argument, unconfigured vault)3: Validation error (e.g., malformed roadmap, invalid dependency)4: Optimistic concurrency conflict (file was modified by another process)5: Unexpected error (e.g., Node.js exception)
- Path Normalization: PALEE natively handles both forward slashes (
/) and backslashes (\) for vault configuration and file references. - Lock Timeouts: On Windows, file locks become stale after 60 seconds (vs 120s on Unix) to accommodate aggressive process termination without
finallyblocks executing. - Config Storage: The config file on Windows is stored in
%LOCALAPPDATA%\palee\config.json.
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
Detailed contribution guidelines will be added with the implementation source.
MIT (see LICENSE).
