원클릭으로
review
End of day review with learning capture. Integrates with evening journaling if enabled.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
End of day review with learning capture. Integrates with evening journaling if enabled.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Process synced Granola meetings to update person pages, extract tasks, and organize meeting notes
Capture solved problems as categorized documentation with YAML frontmatter for fast lookup
Personal career coach with 4 modes: weekly reports, monthly reflections, self-reviews, promotion assessments
Generate a DexDiff methodology document from your vault customisations: package how you use Dex so others can replicate it
Rigorous whole-system checkup — verifies every Dex feature honestly (working / off / broken / couldn't-check), self-heals what is provably safe, and guides the user only where Dex cannot fix itself. Replaces /health-check.
Interactive post-onboarding tour with adaptive pathways based on available data
| name | review |
| description | End of day review with learning capture. Integrates with evening journaling if enabled. |
Conduct an end-of-day review to capture progress and set up tomorrow.
Before executing this command, read System/user-profile.yaml → communication section and adapt:
Career Level Adaptations:
Directness:
Detail Level:
See CLAUDE.md → "Communication Adaptation" for full guidelines.
Find files modified TODAY:
# Get today's date and find files modified today
TODAY=$(date +%Y-%m-%d)
find . -type f -name "*.md" -newermt "$TODAY 00:00:00" ! -newermt "$TODAY 23:59:59" 2>/dev/null | grep -v "node_modules" | xargs ls -lt 2>/dev/null
Critical rules:
head limits on file discovery-mtime 0 (which captures 24-hour rolling window)Check 03-Tasks/Tasks.md for tasks completed today using completion timestamps:
✅ YYYY-MM-DD matching today's date- [x] **Review pricing proposal** ^task-20260127-003 ✅ 2026-01-28 09:15Read 00-Inbox/Weekly_Plans.md for:
Check 00-Inbox/Meetings/ for any meeting notes from today.
Present findings to user:
"Based on file timestamps, these notes were modified today: [list]
What did you actually work on today that should be captured in the review?"
Wait for user response before proceeding.
With user-verified information:
Scan today's conversation for learnings:
Before asking the user anything, reflect on today's session and automatically extract:
Mistakes or corrections
Preferences mentioned
Documentation gaps
Workflow inefficiencies
For each learning identified, write to 00-Inbox/Session_Learnings/YYYY-MM-DD.md:
## HH:MM - [Short title]
**What happened:** [Specific situation from today's session]
**Why it matters:** [Impact on workflows/system]
**Suggested fix:** [Specific action with file paths if applicable]
**Status:** pending
---
Then ask the user: "I captured [N] learnings from today's session. Anything else you'd like to add?"
This ensures learnings persist for:
/week)/dex-whats-new)After creating the daily review, silently update usage tracking:
System/usage_log.md- [ ] Daily review (/review) → - [x] Daily review (/review)Analytics (Silent):
Call track_event with event_name daily_review_completed and properties:
wins_count: number of wins/accomplishments capturedlearnings_count: number of learnings extractedThis only fires if the user has opted into analytics. No action needed if it returns "analytics_disabled".
Check if evening journaling is enabled:
System/user-profile.yamljournaling.evening valuejournaling.evening: true:
00-Inbox/Journals/YYYY/MM-Month/Evening/YYYY-MM-DD-evening.md/journal command)journaling.evening: false: Skip journal promptCreate daily note at 00-Inbox/Daily_Reviews/Daily_Review_[YYYY-MM-DD].md:
---
date: [YYYY-MM-DD]
type: daily-review
---
# Daily Review — [Day], [Month] [DD], [YYYY]
## Accomplished
- ✓ [Completed item 1]
- ✓ [Completed item 2]
## Progress Made
| Area | Movement |
|------|----------|
| **[Area 1]** | [What moved forward] |
| **[Area 2]** | [What moved forward] |
## Weekly Priorities Progress
> Reference: 00-Inbox/Weekly_Plans.md
- **[Priority 1]:** [Status/progress]
- **[Priority 2]:** [Status/progress]
## Insights
- [Key realization or connection]
- [Important learning]
## Blocked/Stuck
| Item | Blocker | Status |
|------|---------|--------|
| [Item] | [What's blocking] | [Status] |
## Discovered Questions
1. [New question that emerged]
2. [Thing to research]
## Tomorrow's Focus
1. [Priority 1 — tied to weekly focus]
2. [Priority 2]
3. [Priority 3]
## Open Loops
- [ ] [Thing to remember]
- [ ] [Person to follow up with]
- [ ] **Awaiting:** [What you're waiting on from others]