Study Skill banner
mordor-forge mordor-forge

Study Skill

Development community

Description

Claude Code skill for interactive learning with FSRS-6 spaced repetition, research agents, book catalog, ADHD-aware sessions, and domain-specific visualization

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

study

An Agent Skills-compatible study tutor for structured, interactive learning with spaced repetition.

The active agent teaches concepts through notes and guides you through exercises you implement yourself, with FSRS-based review scheduling, optional research integrations, PDF source material support, and restart-safe session state.

Quick Start

  1. Install the full skill folder for your agent:

    Claude Code:

    mkdir -p ~/.claude/skills
    cp -R study/ ~/.claude/skills/study/

    Codex:

    mkdir -p ~/.agents/skills
    cp -R study/ ~/.agents/skills/study/

    Hermes:

    mkdir -p ~/.hermes/skills
    cp -R study/ ~/.hermes/skills/study/
  2. Build the FSRS scheduler:

    cd /scripts/fsrs
    go build -o fsrs ./cmd/fsrs/
  3. Start learning:

    /study init "Go concurrency"
    /study start

    In Codex, explicitly mention the skill if needed:

    $study study init "Go concurrency"

Prerequisites

Required

  • An Agent Skills-compatible client such as Claude Code, Codex, Hermes, Cline, or OpenCode
  • Go 1.22+ — to build the FSRS spaced repetition binary
  • Python 3.11+ and uv — for the book catalog builder (only needed if you use study catalog)

Recommended

These enhance the experience but aren't required:

Plugin/Skill What it enables Install
SciAgent-Skills Curated bioinformatics and life science skills — domain-aware lessons, parameter tables, troubleshooting, exercise verification for scientific topics Install from that project's current agent-specific instructions
context7 Live framework/library documentation in lessons Install through your agent's MCP/plugin mechanism
Playwright Browser preview for visual diagrams Install through your agent's MCP/plugin mechanism
[visual-explainer](https://github.com/nic