review-scheduler

review-scheduler is a skill for Claude Code from Howie126313/obsidian-vault-kit. It costs 71 tokens per session (1,476 once invoked), scanned A, original, Apache-2.0.

A macOS tool for scheduling reminders to review articles in an Obsidian vault, a folder of linked notes. It uses spaced repetition, which schedules reviews at increasing intervals to support memory.

In plain words
What is it for?
Starting, stopping, and checking daily article-review reminders, with reminders triggered when the Mac is unlocked.
Why use it?
It helps prevent useful articles from being forgotten and handles recurring reminders through macOS background scheduling.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the obsidian-vault-kit plugin — 6 skills shipped together

Good fit Starting, stopping, and checking daily article-review reminders, with reminders triggered when the Mac is unlocked.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/howie126313/obsidian-vault-kit/review-scheduler
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Howie126313/obsidian-vault-kit --skill review-scheduler
Clone the repo
git clone --depth 1 https://github.com/Howie126313/obsidian-vault-kit

Made for: Claude Code.

Or install obsidian-vault-kit, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review-scheduler

README.md
[![agentmods](https://agentmods.dev/badge/skills/howie126313/obsidian-vault-kit/review-scheduler/github.svg)](https://agentmods.dev/skills/howie126313/obsidian-vault-kit/review-scheduler)
Your own site
<a href="https://agentmods.dev/skills/howie126313/obsidian-vault-kit/review-scheduler"><img src="https://agentmods.dev/badge/skills/howie126313/obsidian-vault-kit/review-scheduler/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review-scheduler

Your own site · 80×15
<a href="https://agentmods.dev/skills/howie126313/obsidian-vault-kit/review-scheduler"><img src="https://agentmods.dev/badge/skills/howie126313/obsidian-vault-kit/review-scheduler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,476 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.01476
Opus 5 $0.00036 $0.00738
Sonnet 5 $0.00014 $0.00295
Haiku 4.5 $0.00007 $0.00148

Measured 12d ago against content hash e533ad75f490, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

review-scheduler scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (references/review_reminder.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/review-scheduler/SKILL.md · 176 lines

How it starts

The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Review Scheduler

Manage spaced repetition review reminders for the Obsidian vault.

Argument Parsing

Parse user input arguments (args) to determine which subcommand to run:

  • No args or start → execute Start Flow
  • stop → execute Stop Flow
  • status → execute Status Check

Start Flow

Step 0: Platform Check

This skill requires macOS. Check the platform first:

uname -s

If the output is not Darwin, inform the user that this skill is macOS-only (requires launchd, Swift compiler, and osascript) and stop.

Step 0.5: Dependency Check

Before any action, run these checks:

which python3 && python3 --version
python3 -c "import yaml; print('PyYAML OK')"
which swiftc

If any dependency is missing, stop immediately and report to user:

  • Python 3 missing: suggest brew install python3
  • PyYAML missing: suggest pip3 install pyyaml
  • swiftc missing: suggest xcode-select --install

Proceed only after all checks pass.

Step 1: Ask User for Scheduled Time

Use AskUserQuestion to ask:

"What time would you like to receive daily review reminders? (default 9:00, format: 08:30, 21:00)"

Parse user input into Hour and Minute. If user presses enter or says "default", use 9:00.

Step 2: Check Existing Deployment

launchctl list 2>/dev/null | grep com.obsidian-vault-kit.review
  • If already running → inform user "Review scheduler is already active", ask if they want to update the scheduled time
  • If user doesn't want to update → end
  • If user wants to update → run Stop Flow first, then continue with deployment

Step 3: Deploy Files

  1. Detect vault path: follow ../../_shared/common-steps.md "Vault Detection" section, store as $VAULT_ROOT

  2. Detect vault name: take the directory name of $VAULT_ROOT

  3. Create .review/ directory: mkdir -p $VAULT_ROOT/.review

  4. Create reviews/ directory: mkdir -p $VAULT_ROOT/reviews

  5. Deploy review_reminder.py:

    • Read references/review_reminder.py
    • Replace {{VAULT_PATH}} with the actual $VAULT_ROOT absolute path
    • Replace {{VAULT_NAME}} with the actual vault name
    • Write to $VAULT_ROOT/.review/review_reminder.py

Read the full file on GitHub · 176 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 176 lines · 71 tokens per session scan A e533ad75f490

Subscribe to this mod's changes

review-scheduler is a skill published in the GitHub repository Howie126313/obsidian-vault-kit (3 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 71 tokens to every session and 1,476 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

llm-wiki

Build and maintain an LLM-curated personal knowledge base — the "LLM Wiki" pattern from Andrej Karpathy's April 2026 gist. Use this skill whenever the user wants to ingest a source (paper, article, transcript, PDF, notes) into a persistent compounding knowledge base, ask a question against accumulated notes, lint or…

praneybehl/llm-wiki-plugin · 221 tokens

superbrain-distill

Internal SuperBrain skill — run by the detached capture child to distill a session-event delta into routed Obsidian notes. Not for direct user invocation.

m3talux/superbrain · 36 tokens

who-is-speaking

Identify the family member speaking in a shared family vault (e.g., vaulttribu), then lock the router to that vault + set auto-enrich mode to Hybrid so subsequent auto-saves route to wiki/People/ /. Companion skill for the tribu-routing convention. Trigger this skill at the start of any session on a shared…

tboome33/obsidian-mcp-router · 237 tokens

user-profile

Use to create or update the user's anchor profile — a single private file (/bettersense-work-reflections/profile.md) that captures who the user is, what they do, what context other skills need to know about them. Read automatically by other skills in the bundle when present, so the user doesn't re-explain themselves…

shwetank/bettersense · 131 tokens

career-retro

Use for a periodic (quarterly / annual) career retrospective across the ENTIRE bettersense memory — producing a longitudinal self-assessment with cited growth deltas since the last retro and the honest gaps to work on next. Trigger phrases include "run my career retro", "where am I in my career", "annual…

shwetank/bettersense · 166 tokens

obsidian-ai-setup

Bootstrap an Obsidian vault with the AI Pro Obsidian Plugin. Creates the complete vault structure, system files, Obsidian configuration, memory system, hooks, and output styles, then runs personalized onboarding to tailor the workspace to the user. Uses a single universal structure with no mode selection. Trigger when…

anliberant/obsidian-ai-setup · 94 tokens