一键导入
daily
Morning planning session - reads recent vault activity, flags urgent items, plans the day
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Morning planning session - reads recent vault activity, flags urgent items, plans the day
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Log a work achievement as a linked note in the vault — for performance reviews
End-of-day check-in — pulls GitHub activity, compares to existing logs, and creates missing entries
Log a concrete task with an optional deadline — surfaces in daily briefings
Initialise claudia for a new user — walks through prerequisites, then uses the Obsidian CLI to set up the vault
Weekly review - flags forgotten ideas/tasks, summarises the week
Log a decision with rationale — high-value evidence for performance reviews
基于 SOC 职业分类
| name | daily |
| description | Morning planning session - reads recent vault activity, flags urgent items, plans the day |
| argument-hint | ["optional focus area for today"] |
Run a morning planning session. Today's date: !date +%Y-%m-%d.
Read yesterday's daily note (if it exists):
obsidian read path="$(date -v-1d +%Y/%m/%Y-%m-%d).md"
Read today's daily note (if it exists):
obsidian daily:read
Check Tasks for due dates and overdue items:
obsidian read file="Atlas/Tasks"
Parse all unchecked (- [ ]) lines. Flag anything with Due: date on or before today as OVERDUE. Flag anything due within 7 days as "Coming up".
Check unrefined ideas for stale items:
obsidian read file="Atlas/Ideas"
Find all lines under ## Unrefined. Compare the Added: date to today — flag anything older than 7 days.
Check Work atlas for last entry date:
obsidian read file="Atlas/Work"
Note the most recent entry date. Flag if it's been more than 3 working days.
Check for recent weekly review:
obsidian search query="type:weekly-review" --output json
If none found in the last 10 days, flag it.
Check for stale active projects:
obsidian search query="tag:status/refined" --output paths
Read each project note. Check the ## Work entries section — find the most recent date listed. If no work entry has been linked in 14+ days, flag the project as stalling.
## Morning Briefing — [date]
**Urgent**
[OVERDUE tasks and tasks due today/tomorrow — or "Nothing urgent"]
**Coming up** (due within 7 days)
[List or "None"]
**Yesterday's loose ends**
[Unchecked tasks from yesterday's daily note, or "None found"]
**Idea signals**
- Ideas: [N] unrefined, [N] stale (>7d)
- Last work note: [date] ([ok / FLAG: X days ago])
- Last weekly review: [date] ([ok / FLAG: overdue])
**Stalling projects**
[Projects with no work entry in 14+ days — or "None"]
**Suggested focus**
[1-3 bullets based on the above signals — specific, not generic]
If $ARGUMENTS was provided, incorporate it as today's stated focus area.
After showing the briefing, ask: "Want me to create today's daily note with this context pre-filled?"