by hluaguo
AI-powered learning coach with spaced repetition with Claude Code - master any knowledge faster with personalized syllabi and progress tracking
# Add to your Claude Code skills
git clone https://github.com/hluaguo/learn-faster-kitAI-powered learning coach that accelerates mastery through spaced repetition, personalized syllabi, and active practice.
Built for Claude Code - Integrates AI coaching directly into your development environment.
Master any technical skill with science-backed learning principles:
No comments yet. Be the first to share your thoughts!
Prerequisites: uv package manager
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
Install once and use across all projects:
uv tool install learn-faster --from git+https://github.com/cheukyin175/learn-faster-kit.git
Then in any project directory, simply run:
learn-faster
This will auto-initialize on first run and launch Claude Code with FASTER coaching mode.
Run directly without installation:
uvx --from git+https://github.com/cheukyin175/learn-faster-kit.git learn-faster
On first run, learn-faster creates:
your-project/
├── .claude/
│ ├── agents/practice-creator.md
│ ├── commands/
│ │ ├── learn.md
│ │ ├── review.md
│ │ └── progress.md
│ └── settings.local.json
├── .learning/
│ ├── config.json (tracks initialization)
│ ├── scripts/
│ │ ├── init_learning.py
│ │ ├── log_progress.py
│ │ ├── review_scheduler.py
│ │ └── generate_syllabus.py
│ └── references/faster_framework.md
└── CLAUDE.md
Install the tool
uv tool install learn-faster --from git+https://github.com/cheukyin175/learn-faster-kit.git
Launch in any project directory
cd your-learning-project
lear...