スキル一覧に戻る
robabby

daily-note

by robabby

Documentation website for AI-ready Obsidian vaults with downloadable starter templates

0🍴 0📅 2026年1月13日
GitHubで見るManusで実行

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

  1. Use obsidian_get_periodic_note({ period: "daily" })
  2. Display content or note if missing

Create Today's Note

  1. Check if daily note exists
  2. Determine path from periodic notes config or CLAUDE.md
  3. Create with appropriate template/frontmatter
  4. Common path patterns:
    • Planner/YYYY/MM-Month/YYYY-MM-DD.md
    • Daily/YYYY-MM-DD.md
    • Journal/YYYY/YYYY-MM-DD.md

Append to Daily Note

  1. Get existing note content
  2. Use obsidian_append_content to add new content
  3. 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"

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です