review

review is a skill for Claude Code from ballred/obsidian-claude-pkm. It costs 37 tokens per session (955 once invoked), scanned A, original, MIT.

A review skill that chooses a daily, weekly, or monthly review workflow based on the current time and calendar context. A review is a guided check of progress, plans, and unfinished work.

In plain words
What is it for?
Use it for morning, midday, or evening check-ins, weekly planning, or end-of-month reflection, including the commands `/review daily`, `/review weekly`, and `/review monthly`.
Why use it?
It gives the user a suitable review routine without requiring them to choose the format themselves. The user can also explicitly request a daily, weekly, or monthly review.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Part of the vault-template plugin — 13 skills, 4 agents, 3 hooks shipped together

Good fit Use it for morning, midday, or evening check-ins, weekly planning, or end-of-month reflection, including the commands /review daily, /review weekly, and /review monthly.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ballred/obsidian-claude-pkm/review
About the project

Obsidian + Claude Code Accountability System is a personal knowledge-management setup that connects long-term goals with projects, reviews, daily notes, and tasks inside Obsidian. People use it to plan work, track progress, and review whether daily activity supports their goals with help from Claude Code. Its catalogue add-ons implement the system's planning, tracking, and review workflows.

ballred/obsidian-claude-pkm · 1,861 stars · on GitHub

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 ballred/obsidian-claude-pkm --skill review
Clone the repo
git clone --depth 1 https://github.com/ballred/obsidian-claude-pkm

Made for: Claude Code.

Or install vault-template, the plugin that ships this one along with the rest of its 13 skills, 4 agents, 3 hooks.

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/ballred/obsidian-claude-pkm/review/github.svg)](https://agentmods.dev/skills/ballred/obsidian-claude-pkm/review)
Your own site
<a href="https://agentmods.dev/skills/ballred/obsidian-claude-pkm/review"><img src="https://agentmods.dev/badge/skills/ballred/obsidian-claude-pkm/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/ballred/obsidian-claude-pkm/review"><img src="https://agentmods.dev/badge/skills/ballred/obsidian-claude-pkm/review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 955 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.00037 $0.00955
Opus 5 $0.00018 $0.00477
Sonnet 5 $0.00007 $0.00191
Haiku 4.5 $0.00004 $0.00096

Measured 11d ago against content hash 6b2cacbad12a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d ago.

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.

vault-template/.claude/skills/review/SKILL.md · 124 lines

How it starts

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

Review Skill

Smart router that detects context and launches the appropriate review workflow.

Usage

/review           # Auto-detect the right review based on time/context
/review daily     # Force daily review
/review weekly    # Force weekly review
/review monthly   # Force monthly review

Or simply: "Help me review" — and the right workflow starts.

Auto-Detection Logic

When invoked without arguments, detect context using these rules:

1. Check the Time of Day

HOUR=$(date +%H)
  • Before noon (< 12): Morning routine — delegate to /daily morning workflow
  • After 5 PM (>= 17): Evening shutdown — delegate to /daily evening workflow
  • Midday (12-17): Midday check-in — delegate to /daily midday workflow

2. Check the Day of Week

DAY_OF_WEEK=$(date +%u)  # 1=Monday, 7=Sunday
  • Sunday (7) or Monday (1): Weekly review — delegate to /weekly
    • Override time-of-day detection
    • Ask: "Ready for your weekly review?" before proceeding

3. Check the Day of Month

DAY_OF_MONTH=$(date +%d)
DAYS_IN_MONTH=$(date -v+1m -v1d -v-1d +%d 2>/dev/null || date -d "$(date +%Y-%m-01) +1 month -1 day" +%d)
  • Last 3 days of month (DAY_OF_MONTH >= DAYS_IN_MONTH - 2): Monthly review — delegate to /monthly

    • Override both time-of-day and day-of-week detection
    • Ask: "End of month — ready for your monthly review?" before proceeding
  • First day of month (DAY_OF_MONTH == 1): Also suggest monthly review

    • "It's the first of the month. Want to do your monthly review for last month?"

4. Check Staleness

Before routing, check for overdue reviews:

# Read weekly review file for last date
WEEKLY_REVIEW="Goals/3. Weekly Review.md"
# If last weekly review > 7 days ago, suggest weekly regardless of day
  • Weekly review overdue (>7 days): Suggest weekly review
    • "Your last weekly review was N days ago. Want to catch up?"
    • If user says no, fall through to time-of-day detection

Read the full file on GitHub · 124 lines

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. 11d ago First seen · 124 lines · 37 tokens per session scan A 6b2cacbad12a

Subscribe to this mod's changes

review is a skill published in the GitHub repository ballred/obsidian-claude-pkm (1,861 stars, last pushed 6mo ago), licensed MIT. It adds 37 tokens to every session and 955 once invoked, about $0.0002 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.