---
name: Review
slug: review-5
category: Writing
description: Review guides morning, evening, and weekly check-in workflows for daily planning and reflection. Use it when someone asks for a morning routine, end-of-day wrap-up, or weekly review.
github: "https://github.com/ArtemXTech/claude-code-obsidian-starter/tree/main/.claude/skills/review"
language: Typst
stars: 224
forks: 46
install: "npx degit https://github.com/ArtemXTech/claude-code-obsidian-starter/tree/main/.claude/skills/review ~/.claude/skills/review"
installs_to: ~/.claude/skills/review
source_path: .claude/skills/review/SKILL.md
collection_size: 5
category_size: 1109
collection_url: "https://dirskills.com/collections/ArtemXTech/claude-code-obsidian-starter"
added: 2026-09-03T06:05:33.045Z
last_synced: 2026-09-03T06:05:33.045Z
canonical_url: "https://dirskills.com/skills/review-5"
---

# Review

Review guides morning, evening, and weekly check-in workflows for daily planning and reflection. Use it when someone asks for a morning routine, end-of-day wrap-up, or weekly review.

**Install:**

```bash
npx degit https://github.com/ArtemXTech/claude-code-obsidian-starter/tree/main/.claude/skills/review ~/.claude/skills/review
```

## README

# Review Skill

Morning, evening, and weekly review workflows.

## Routing

| User says | Workflow |
|-----------|----------|
| "morning routine", "start my morning" | `workflows/morning.md` |
| "evening routine", "end of day" | `workflows/evening.md` |
| "weekly review" | `workflows/weekly.md` |

## Templates

| Review | Template |
|--------|----------|
| Morning | `templates/morning-checkin.md` |
| Evening | `templates/evening-checkin.md` |
| Weekly | `templates/weekly-review.md` |

## Data Access

**Projects:**
```bash
ls Projects/*.md
cat "Projects/Project Name.md"
```

**Tasks:**
```bash
curl "http://127.0.0.1:8090/api/tasks"
curl "http://127.0.0.1:8090/api/tasks?status=in-progress"
```

**Recent daily notes:**
```bash
ls -t Daily/*.md | head -5
```
