← 返回 Skills 市场
freznel10

Obsidian Daily Log

作者 freznel10 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
94
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install obsidian-daily-log
功能描述
Update freznel's Obsidian daily note with timestamped activity entries, especially day recaps, travel logs, itineraries, movement updates, and "I did X at Y...
使用说明 (SKILL.md)

Obsidian Daily Log

Update freznel's Obsidian daily note in the superyas vault by appending timestamped entries to a ## Timeline section. Prefer compact chronological logging that stays readable in Obsidian on mobile and desktop.

Vault conventions

  • Vault path: C:\Users\frezn\iCloudDrive\iCloud~md~obsidian\superyas
  • Daily notes folder: 01 Daily
  • Daily note filename: YYYY-MM-DD.md
  • Daily note template: Templates\Daily Note.md
  • Default insertion section: ## Timeline placed before ## Notes

Group-chat safety

Allow this skill in Telegram groups and other shared chats only when freznel clearly intends to log something to the vault.

Strong triggers:

  • messages starting with /dailylog, /travellog, or /timeline
  • direct prompts like add this to my daily note, save this to Obsidian, or log this for today
  • clear first-person day recaps addressed to the assistant

Do not write to the vault from ordinary group banter, third-party messages, or ambiguous conversation fragments. If intent is unclear in a group, ask one short confirmation question before saving.

Workflow

  1. Determine the target date.
    • If freznel says "today", use the current date.
    • If freznel gives a date, use that exact date.
    • If the date is ambiguous, ask one short clarifying question.
  2. Prefer natural-language inference first.
    • Accept messy recaps, travel updates, partial timelines, and conversational summaries.
    • Infer sequence, approximate times, locations, and activity boundaries from context.
    • Convert the recap into clean chronological entries.
  3. Extract each activity into structured fields:
    • time in HH:MM 24-hour form
    • activity as a short action phrase
    • optional location
    • optional tags
  4. Choose output mode.
    • Prefer bullets for normal daily logging and travel updates.
    • Use table only when freznel explicitly asks for a table or when the day is highly structured and comparable across many entries.
  5. Run scripts/update_daily_log.py.
  6. Confirm what was saved and which note was updated.

Obsidian Markdown conventions

Use native Obsidian Markdown where it improves readability, but keep daily logging lightweight.

  • Prefer standard Markdown headings and bullet lists for timeline capture.
  • Use callouts only for summaries, key travel notes, or notable incidents — not for every timeline line.
  • Keep callouts compact, for example:
> [!tip] Travel day
> Landed on time. Hotel check-in was smooth.
  • Avoid large tables unless the entries are consistently structured.
  • Preserve compatibility with normal Markdown rendering; do not depend on exotic plugin-only syntax for core timeline content.
  • Use emoji sparingly inside timeline bullets when they add scanning value, such as 📍 for location.

Format policy

Default: bullets

Use bullets for most cases because they are easier to dictate, faster to scan on mobile, and more tolerant of messy real-life travel notes.

Example:

## Timeline

- 06:45 — Left home for airport — 📍 Manila
- 08:10 — Checked in and cleared security — 📍 NAIA T3
- 11:35 — Landed — 📍 Singapore
- 13:00 — Reached hotel and checked in — 📍 Bugis

Optional: table

Use a table when the user asks for one, when entries naturally fit consistent fields, or when location and tags matter enough to justify columns.

Example:

## Timeline

| Time | Activity | Location | Tags |
|---|---|---|---|
| 06:45 | Left home for airport | Manila | #travel #airport |
| 08:10 | Checked in and cleared security | NAIA T3 | #travel |
| 11:35 | Landed | Singapore | #flight |

Recommendation logic

  • Recommend bullets by default.
  • Recommend table for trip reports with many repeated attributes, such as time / place / transport / status.
  • If freznel asks whether a table should be auto-generated, answer: not by default. Auto-generate only when the day has 6+ structured entries or freznel explicitly wants spreadsheet-like review.
  • If a recap or takeaway would help, add a short Obsidian callout after the timeline instead of overloading each entry.

Running the updater

Use this script:

  • scripts/update_daily_log.py

Typical bullet example:

python scripts/update_daily_log.py --date 2026-03-30 --mode bullets --time 06:45 --text "Left home for airport" --location "Manila" --tags "#travel" --time 08:10 --text "Checked in and cleared security" --location "NAIA T3" --tags "#airport #travel"

Typical table example:

python scripts/update_daily_log.py --date 2026-03-30 --mode table --time 06:45 --text "Left home for airport" --location "Manila" --tags "#travel" --time 08:10 --text "Checked in and cleared security" --location "NAIA T3" --tags "#airport #travel"

Notes for interpretation

  • Normalize times like 7, 7am, 7:15 pm, 19:15 into HH:MM.
  • Keep activity text concise; do not write long narrative paragraphs inside the timeline.
  • If freznel sends a narrative recap, convert it into separate timestamped entries when possible.
  • Prefer inference over rigid parsing. freznel should not need to write machine-friendly input.
  • Treat /dailylog, /travellog, and /timeline as strong save-to-note triggers, but accept plain-language prompts like add this to today's note too.
  • Preserve chronology by sorting entries by time.
  • Avoid duplicating identical lines if the same update is logged twice.
  • If no exact time is available, ask whether to log an approximate time only when timing materially matters. Otherwise, use the best reasonable approximation and say so briefly.
安全使用建议
This skill appears to do what it says: it will read and write Markdown files in the specified Obsidian vault path on the local filesystem (Windows path hard-coded by default). Before installing, confirm the path matches your machine (change --daily-dir / --template or edit the script if needed). Review the script yourself (it contains no network calls or hidden behavior) and ensure the agent only logs entries when the user explicitly intends that — especially in group chats where by default the SKILL.md asks for confirmation. If you plan to use it on a different OS or user account, update the path. If you want to limit risk further, run the script manually rather than allowing autonomous agent invocation.
功能分析
Type: OpenClaw Skill Name: obsidian-daily-log Version: 1.0.0 The skill is a straightforward utility designed to append timestamped activity logs to an Obsidian vault. The Python script (scripts/update_daily_log.py) manages file creation and Markdown formatting using standard libraries, with no network access, obfuscation, or unauthorized data access. While it uses hardcoded absolute paths for a specific user's Windows environment, its behavior is entirely consistent with the stated purpose of personal note-taking and lacks any indicators of malicious intent or high-risk vulnerabilities.
能力评估
Purpose & Capability
Name/description (update Obsidian daily note) match the included script and SKILL.md. The script reads/writes a daily note and template in the specified vault path and provides bullet/table rendering as described.
Instruction Scope
SKILL.md explicitly instructs to run scripts/update_daily_log.py and describes how to infer times/activities. This grants the agent discretion to parse conversational recaps into entries (expected for the skill) — but that inference could accidentally capture third‑party/group content if triggers/confirmation logic are ignored. The skill's group-chat safety guidance mitigates this risk.
Install Mechanism
No install spec; the skill is instruction + a small Python script. Nothing is downloaded or installed automatically, and there are no external URLs or archives.
Credentials
No environment variables or external credentials requested (good). The script expects direct filesystem access to a specific Windows path (C:\Users\frezn\iCloudDrive\...superyas). Requesting file I/O on that path is proportional to the purpose but is a sensitive local access — the path is user-specific and should be adjusted for another user.
Persistence & Privilege
Skill is not always-enabled and does not modify other skills or system settings. It writes only to the specified note files (its own scope); autonomous invocation is allowed by platform default but not unusually privileged here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install obsidian-daily-log
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /obsidian-daily-log 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
obsidian-daily-log 1.0.0 – Initial Release - Enables logging of timestamped daily activities, travel logs, and day recaps into freznel’s Obsidian daily note. - Supports natural-language recaps; infers and structures timeline entries into a ## Timeline section. - Default output uses Markdown bullets for compact, chronological logging; tables supported on request. - Clear intent required to append notes, especially in group chats; strong triggers and confirmation safeguards included. - Integrates with update_daily_log.py script for adding entries; compatible with Obsidian conventions and mobile/desktop formats.
元数据
Slug obsidian-daily-log
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Obsidian Daily Log 是什么?

Update freznel's Obsidian daily note with timestamped activity entries, especially day recaps, travel logs, itineraries, movement updates, and "I did X at Y... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 94 次。

如何安装 Obsidian Daily Log?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install obsidian-daily-log」即可一键安装,无需额外配置。

Obsidian Daily Log 是免费的吗?

是的,Obsidian Daily Log 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Obsidian Daily Log 支持哪些平台?

Obsidian Daily Log 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Obsidian Daily Log?

由 freznel10(@freznel10)开发并维护,当前版本 v1.0.0。

💬 留言讨论