review

review is a skill for Claude Code from owenliang60-ship-it/knowledge-mgmt. It costs 67 tokens per session (3,427 once invoked), scanned A, original, MIT.

A spaced-repetition review system for Obsidian notes, using FSRS-6, an algorithm that schedules reviews when they are most useful for memory.

In plain words
What is it for?
Use it to scan atomic Obsidian cards, create and score questions with AI, schedule reviews, and store review progress locally.
Why use it?
It helps turn stored notes into scheduled practice instead of relying on memory or choosing review dates by hand.

Skill for Claude Code

Written for Claude Code: arguments in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

Good fit Use it to scan atomic Obsidian cards, create and score questions with AI, schedule reviews, and store review progress locally.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/owenliang60-ship-it/knowledge-mgmt/review
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 owenliang60-ship-it/knowledge-mgmt --skill review
Clone the repo
git clone --depth 1 https://github.com/owenliang60-ship-it/knowledge-mgmt

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/owenliang60-ship-it/knowledge-mgmt/review/github.svg)](https://agentmods.dev/skills/owenliang60-ship-it/knowledge-mgmt/review)
Your own site
<a href="https://agentmods.dev/skills/owenliang60-ship-it/knowledge-mgmt/review"><img src="https://agentmods.dev/badge/skills/owenliang60-ship-it/knowledge-mgmt/review/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

Your own site · 80×15
<a href="https://agentmods.dev/skills/owenliang60-ship-it/knowledge-mgmt/review"><img src="https://agentmods.dev/badge/skills/owenliang60-ship-it/knowledge-mgmt/review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,427 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.00067 $0.03427
Opus 5 $0.00034 $0.01714
Sonnet 5 $0.00013 $0.00685
Haiku 4.5 $0.00007 $0.00343

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

Security

Grade A, and why

review 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 10d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/fsrs_engine.py, scripts/migrate_v1_to_v2.py, scripts/test_migrate_v1_to_v2.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.

review/SKILL.md · 369 lines

How it starts

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

/review Command

间隔重复复习系统 — 用 FSRS-6 算法复习 Obsidian 中的原子卡片(石头)。

定位

研究 → /note 存卡 → /review 复习 → 知识巩固
Skill 职责 输出
/note 知识沉淀 — 研究摘要 + 原子卡片 Obsidian 卡片组
/review 知识巩固 — 间隔重复复习 本地 review_state.json
/journal 进度记录 — 做了什么 本地 journal + Obsidian journal

文件路径

  • Claude Code skill 目录: $HOME/.claude/skills/review/
  • Codex skill 目录: $HOME/.agents/skills/review/
  • FSRS 引擎:
    • Claude Code: $HOME/.claude/skills/review/scripts/fsrs_engine.py
    • Codex: $HOME/.agents/skills/review/scripts/fsrs_engine.py
  • 状态文件默认位置:
    • Claude Code: ${KM_REVIEW_STATE_PATH:-$HOME/.claude/skills/review/review_state.json}
    • Codex: ${KM_REVIEW_STATE_PATH:-$HOME/.agents/skills/review/review_state.json}

运行时约定(Claude Code / Codex)

下文所有命令里的两个占位按当前运行时替换:

  • <FSRS_ENGINE_PATH>
    • Claude Code: $HOME/.claude/skills/review/scripts/fsrs_engine.py
    • Codex: $HOME/.agents/skills/review/scripts/fsrs_engine.py
  • <REVIEW_STATE_PATH>
    • 默认就是对应 skill 目录下的 review_state.json
    • 如需自定义,优先用 KM_REVIEW_STATE_PATH

配置:状态文件路径

默认状态文件位置与 installed skill 同目录:

  • Claude Code: ~/.claude/skills/review/review_state.json
  • Codex: ~/.agents/skills/review/review_state.json

如需自定义(例如跨机器同步、多 vault 隔离、测试隔离),通过环境变量覆盖:

export KM_REVIEW_STATE_PATH=/path/to/your/review_state.json

本 skill 内所有 fsrs_engine.py 的调用都会展开这个变量,自动使用自定义路径。不 export 时使用默认路径。

Usage

Claude Code 通常直接写 /review。Codex 可显式写 $review(或用自然语言让 Codex 按 skill 描述隐式匹配)。

/review                     # 扫描 + 复习(默认)
/review --mode=scan         # 仅扫描新卡片,不复习
/review --mode=stats        # 查看统计信息
/review --topic=多巴胺      # 只复习某主题
/review --limit=5           # 本次最多复习5张

Behavior

Step 1: 扫描注册新卡片

每次 /review 自动执行(除 mode=stats)。

1a. 获取当前状态
python3 <FSRS_ENGINE_PATH> <REVIEW_STATE_PATH> stats

从返回的 known_card_ids 得知已注册卡片。

1b. 列出 Cards/ 目录发现新卡片

唯一识别标准:frontmatter 含 type/atomic 标签 = 原子卡片。

Read the full file on GitHub · 369 lines

Files

What ships with it

4 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. 10d ago First seen · 369 lines · 67 tokens per session scan A 37b4ce354636

Subscribe to this mod's changes

review is a skill published in the GitHub repository owenliang60-ship-it/knowledge-mgmt (37 stars, last pushed 5mo ago), licensed MIT. It adds 67 tokens to every session and 3,427 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

cortex-memory

Persistent cognitive memory for AI agents — query, record, review, and consolidate knowledge across sessions with spreading activation, FSRS scheduling, and NLI contradiction detection.

Fozikio/cortex-engine · 36 tokens

vault-review

Daily knowledge review — surface the notes the user is forgetting (FSRS memory decay) and the weak spots in their vault (gaps), then propose 2-3 concrete things to revisit or connect. Use when the user asks "what should I review", "what am I forgetting", or wants a knowledge check-in.

Evanciel/stellavault · 68 tokens

discuss-cognition

Guide an incremental, evidence-aware discussion that turns an AI, product, model-strategy, competition, or implementation topic into durable personal cognition. Use when the user wants to discuss, learn, explore, compare, challenge, or deeply understand such a topic, including a recommended daily topic. Ask one…

to-real/cognition-workbench · 80 tokens

srsa-review

Use when running Spaced Repetition Systems for AI Agents (SRSA) daily review sessions, grading cards with again/hard/good/easy, and proposing explicit memory add/delete/update actions after each review.

cheanus/SRSA · 46 tokens

autology-tutorial

Use when user is new to Autology, asks "how does Autology work", wants to learn about knowledge capture, or requests a guided introduction.

Curt-Park/autology · 35 tokens

heptabase-linking

Create real cross-links between Heptabase cards via the heptabase CLI. Use when the user wants to link Heptabase cards, cross-reference notes, build a card graph, or fix existing [[Card Title]] wiki-link text that is rendering as plain text instead of a clickable card pill. Real links require a ProseMirror card node…

madeyexz/heptabase-skill · 153 tokens