← Back to list

daily-note
by robabby
Documentation website for AI-ready Obsidian vaults with downloadable starter templates
⭐ 0🍴 0📅 Jan 13, 2026
SKILL.md
name: daily-note description: Work with Obsidian daily notes. Create today's note if missing, append content to existing note, or read current daily note. Uses Obsidian's periodic notes conventions. Requires Obsidian MCP server.
Daily Note
Create, read, or append to daily notes.
Workflow
Read Today's Note
- Use
obsidian_get_periodic_note({ period: "daily" }) - Display content or note if missing
Create Today's Note
- Check if daily note exists
- Determine path from periodic notes config or CLAUDE.md
- Create with appropriate template/frontmatter
- Common path patterns:
Planner/YYYY/MM-Month/YYYY-MM-DD.mdDaily/YYYY-MM-DD.mdJournal/YYYY/YYYY-MM-DD.md
Append to Daily Note
- Get existing note content
- Use
obsidian_append_contentto add new content - Respect existing structure (find appropriate section)
MCP Tools Used
// Get today's daily note
obsidian_get_periodic_note({ period: "daily" })
// Get recent daily notes
obsidian_get_recent_periodic_notes({
period: "daily",
limit: 5,
include_content: true
})
// Append content
obsidian_append_content({
filepath: "Planner/2025/01-January/2025-01-08.md",
content: "\n## Notes\n- Added item"
})
Daily Note Template
---
created: {date}
type: daily
tags:
- daily
- planner
---
# {date}
## Plan
- [ ]
## Notes
## Log
Parameters
$ARGUMENTS(optional):- No args: Read today's note
create: Create today's note if missing{content}: Append content to today's note
Example
User: /daily-note
Response:
"Today's daily note (Planner/2025/01-January/2025-01-08.md):
Plan
- AI Ready Vault brainstorming session
- Review implementation plan
Notes
- Evolved product concept from templates to skills library
- Created project documentation in vault
Log
- 09:00 - Started brainstorming session ---"
User: /daily-note Added meeting notes from standup
Response: "Appended to today's daily note:
Added to ## Notes section: '- Added meeting notes from standup'
File: Planner/2025/01-January/2025-01-08.md"
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon