Token导航 LogoToken导航TokenDH.com
效率权限需确认clawhub未标认证来源可访问clear审计通过

obsidian-daily-logObsidian daily LOG 效率

Agent Skill

obsidian-daily-log 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,987

周安装

127

GitHub Stars

公开资料未说明

下载量

1,046
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:obsidian-daily-log(Obsidian daily LOG 效率)
来源仓库:https://github.com/freznel10/obsidian-daily-log
安装命令:
openclaw skills install obsidian-daily-log
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install obsidian-daily-log

简介

更新带时间戳的日常活动日志笔记。obsidian-daily-log 属于效率类 Skill,可作为该场景下的辅助能力补充。

  • 适合行程记录、回顾总结和动态追踪。
  • 使用 openclaw skills install obsidian-daily-log 安装。
  • 需确认是否写入系统文件或依赖特定路径。
  • 建议检查用户是否有每日笔记目录写入权限。

SKILL.md

name
obsidian-daily-log
description
Update freznel's Obsidian daily note with timestamped activity entries, especially day recaps, travel logs, itineraries, movement updates, and "I did X at Y time" messages. Use when freznel reports what happened during a day, wants a running timeline added to the daily note, needs backfilled time-stamped logs for travel, commute, meetings, meals, or errands, or asks to save a day summary into the Obsidian vault.

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.

  1. 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.

  1. Extract each activity into structured fields:

- time in HH:MM 24-hour form - activity as a short action phrase - optional location - optional tags

  1. 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.

  1. Run scripts/update_daily_log.py.
  2. 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.18%
按下载量换算1,017

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills