Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Retrieva

DaichiDaichi80 downloads

Markdown-native spaced repetition with FSRS.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates14

Retrieva is a Markdown-native spaced-repetition plugin for Obsidian. It schedules reviews with FSRS while keeping card content, identifiers, and review history in ordinary files inside your vault.

Features

  • Schedule new, learning, review, and relearning cards with FSRS.
  • Keep the question and answer in source notes by embedding headings or block IDs.
  • Rebuild all card state from Markdown without an external database.
  • Select review decks by tag, with card counts and nested-tag support.
  • Skip a card for the current session without changing its review history.
  • Manage long-term suspended cards in a dedicated view.
  • Create forward cards or linked front/back pairs from Obsidian commands.
  • Exclude vault directories from indexing and damaged-card detection.
  • Validate and repair malformed card metadata and linear JSONL review history.
  • Install a project-level skill that teaches Codex and Claude Code the card format.
  • Use the interface in English or Japanese.

Retrieva supports desktop and mobile Obsidian. It requires Obsidian 1.13.0 or later.

Detailed usage instructions are available in the English user guide and Japanese user guide.

Installation

Community plugins

Once Retrieva is listed in the Obsidian Community directory:

  1. Open Settings → Community plugins.
  2. Select Browse, search for Retrieva, and install it.
  3. Enable Retrieva.

Manual installation

Download main.js, manifest.json, and styles.css from the matching GitHub release and place them in:

<Vault>/.obsidian/plugins/retrieva/

Reload Obsidian and enable Retrieva under Community plugins.

Quick start

  1. Run Retrieva: Create card from the command palette.
  2. Enter Obsidian embeds for the front and back, such as ![[Biology#Question]] and ![[Biology#Answer]].
  3. Choose an existing FSRS preset and create the card.
  4. Run Retrieva: Open review scope picker.
  5. Select a tag and start reviewing.

Use Retrieva: Create front/back card pair when both directions should be reviewed. Retrieva assigns the pair a shared sibling group so related cards can be kept out of the same review session.

Card format

Each card is one Markdown file. User-owned content looks like this before Retrieva initializes it:

---
retrieva-preset: default
tags:
  - retrieva-card
  - biology
---

![[Biology#Question]]

<!--RETRIEVA-ANSWER-->

![[Biology#Answer]]

When the plugin first indexes the card, it adds a UUIDv7 card ID and a created event. Later reviews append immutable JSONL events to the same file. Avoid manually changing RETRIEVA-CARD and RETRIEVA-LOG blocks; use the recovery view if machine metadata is damaged.

Cards may live anywhere in the vault. The retrieva-card tag and a valid retrieva-preset reference identify them.

Review scopes

The scope picker shows tags used by valid Retrieva cards and the number of cards included by each tag. Selecting a parent tag also includes cards under nested tags. Frequently used scopes can be saved with a display name.

Queue counts show cards ready now and the total number of valid cards in the selected scope. Suspended and sibling-excluded cards remain outside the active queue.

Skip moves a card out of the current pass without writing an event. After the remaining cards are reviewed, choose whether to retry the skipped cards or finish for today. Suspend is persistent and writes a state event; use Retrieva: Open suspended cards to open or resume suspended cards.

Presets

On first load, Retrieva creates Retrieva/Presets/default.md. Presets are Markdown files with frontmatter for:

  • desired retention;
  • maximum interval in days;
  • learning and relearning steps;
  • same-day exclusion of new or reviewed sibling cards.

Preset IDs must be unique. Cards that reference a missing or invalid preset appear in the recovery view.

Settings

  • Default cards folder: Where cards created by Retrieva commands are stored. This does not restrict cards created elsewhere.
  • Excluded directories: Vault-relative directories to ignore, one per line. Cards, presets, and damaged marker-like text inside these directories are not indexed or modified.
  • Show ribbon icon: Adds a shortcut for the review scope picker.
  • Exclude new/review siblings today: Overrides the corresponding preset behavior.
  • Saved scopes: Named tag shortcuts for review sessions.
  • LLM project skills: Installs or updates the bundled Retrieva skill for Codex and Claude Code.

Validation and recovery

Run Retrieva: Validate cards in vault to find malformed markers, invalid JSONL rows, duplicate IDs, missing presets, and branched review history. The recovery view can open the affected file, generate missing initialization metadata, reissue duplicate card IDs, or sort events and regenerate their parent chain.

Back up or version-control your vault before repairing manually edited review logs.

Codex and Claude Code skill

In Retrieva settings, select Install / update under LLM project skills. The plugin writes the bundled skill to:

.agents/skills/retrieva/SKILL.md
.claude/skills/retrieva/SKILL.md

If an existing file differs, Retrieva asks before replacing it. The skill instructs an agent to follow the vault's card-location conventions, ask when the destination is unclear, preserve review history, and let Retrieva generate machine IDs.

This repository also includes manifests for loading the same skill as a Codex or Claude Code plugin.

Data and privacy

Retrieva:

  • reads and writes Markdown files only inside the current vault;
  • enumerates Markdown files when a Retrieva view or card command first initializes the index, because cards may live anywhere in the vault;
  • reads those Markdown files to discover cards, presets, and damaged card markers, except beneath user-configured excluded directories;
  • does not enumerate non-Markdown files as part of card indexing;
  • stores review state in card Markdown and UI settings through Obsidian's plugin data API;
  • writes the two hidden project-skill paths above only after an explicit user action;
  • makes no network requests;
  • collects no analytics or telemetry;
  • requires no account, payment, advertisement, or external service.

Deleting Retrieva's plugin settings does not delete card history because the history remains in Markdown.

Development

pnpm install
pnpm run format:check
pnpm test
pnpm run build

The host-independent parser and scheduler integration live under src/core. Obsidian adapters and UI components live under src/obsidian and src/ui. User-facing strings are stored under src/i18n/locales, with English as the fallback locale.

The vault card index is initialized lazily when a Retrieva view or card command is first opened, keeping normal Obsidian startup lightweight.

Releases use semantic version tags without a v prefix and attach only the three files supported by Obsidian: main.js, manifest.json, and styles.css. GitHub artifact attestations provide build provenance for these assets.

License

MIT

HealthExcellent
ReviewSatisfactory
About
Schedule reviews with FSRS while keeping questions, answers, IDs, and review history in ordinary Markdown files. Rebuild all card state from your vault without an external database, select decks by tag with nested counts, skip cards for a session, manage suspended cards, and create forward or linked front/back pairs.
FlashcardsReviewTags
Details
Current version
0.0.14
Last updated
4 days ago
Created
7 days ago
Updates
14 releases
Downloads
80
Compatible with
Obsidian 1.12.0+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Author
DaichiDaichidaichi-629
GitHubdaichi-629
  1. Community
  2. Plugins
  3. Flashcards
  4. Retrieva

Related plugins

Simple Note Review

Simple, customizable plugin for easy note review, resurfacing and repetition.

LearnKit

A native study system for your Obsidian vault. LearnKit turns notes into durable knowledge with flashcards, spaced repetition, tests, and more.

CBT Exam Simulator

A robust, offline-first CBT exam simulator using FlashQuiz format.

Review

Add a link to the current note to a daily note on a future date (or a past date, you time traveller).

Repeat

Review notes using periodic or spaced repetition.

TagFolder

Show tags as folder.

Spaced Repetition

Fight the forgetting curve by reviewing flashcards & entire notes.

Checklist

Consolidate checklists across all files into a single view.

Tag Wrangler

Rename, merge, toggle, and search tags from the tag pane.

Badges

Add inline badges/callouts to notes.