multi

review

Daily and weekly review workflows. USE WHEN user says "morning routine", "evening routine", "weekly review", "start my day", "end of day".

159 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/review/SKILL.md --create-dirs "https://raw.githubusercontent.com/ArtemXTech/claude-code-obsidian-starter/main/.claude/skills/review/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/review/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How review Compares

Feature / AgentreviewStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Daily and weekly review workflows. USE WHEN user says "morning routine", "evening routine", "weekly review", "start my day", "end of day".

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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
```