.claude/skills/wrapup/SKILL.md
Summarize the day's work and append to the daily note in Obsidian.
npx skillsauth add asonas/dotfiles wrapupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Summarize the day's work and append to the daily note in Obsidian.
/wrapup [date]
Examples:
/wrapup # Today's daily note
/wrapup yesterday # Yesterday's daily note
/wrapup 2026-02-05 # Specific date
Parse the argument to determine which daily note to update:
yesterday → yesterday's dateYYYY-MM-DD → specified dateUse mcp__google-calendar__get-current-time to get the current date for reference.
Check if the target daily note exists:
mcp__mcp-obsidian__obsidian_get_file_contents with filepath: "daily/YYYY-MM-DD.md"
If it doesn't exist, inform the user and offer to create it.
Read tasks completed today from Things3:
Bash: ~/.claude/scripts/things-completed-today.sh
Also read current open tasks in "今日" to report remaining items:
Bash: ~/.claude/scripts/things-today.sh
Collect information about what was done from the following sources. Each source captures different aspects of the day's work, so all should be checked.
From Things3 (Step 3)
From the current session context
From Claude Code auto memory(永続メモリ)
From memory-vector / memory-graph
# memory-vector: 日付ベースの検索
mcp__memory-vector__search_memory with query: "2026-02-05" (対象日付)
# memory-vector: 作業内容ベースの検索
mcp__memory-vector__search_memory with query: "today work investigation implementation fix"
# memory-vector: リポジトリ名での検索
mcp__memory-vector__search_memory with query: "dotfiles" など
# カレントディレクトリからリポジトリ名を取得して検索に使用する
# memory-graph: 関連エンティティの検索
mcp__memory-graph__graphiti_search with query: 対象日付や作業キーワード
createdAt フィールドを確認し、対象日に作成された記録を優先するsource フィールドにリポジトリ名が含まれている記録を優先する情報の統合
Show the user what will be added:
## やったこと(追記予定)
- [Item 1]
- [Item 2]
- ...
## 未完了タスク(Things3に残っているタスク)
- [Open task 1]
- [Open task 2]
この内容でよろしいですか?
Wait for user confirmation or edits.
After confirmation, append to the "やったこと" section:
mcp__mcp-obsidian__obsidian_patch_content with:
filepath: "daily/YYYY-MM-DD.md"
operation: "append"
target_type: "heading"
target: "やったこと"
content: [the summary]
Report to the user:
daily/YYYY-MM-DD.md の「やったこと」セクションに追記しました。
Things3の未完了タスク:
- [remaining tasks]
Always respond in Japanese.
data-ai
memory-vector と memory-graph を横断検索して過去の記憶を呼び出す。「思い出して」「覚えていますか」「前に話した」等の記憶呼び出し時に使う。
development
Review GitHub Pull Requests. When given a PR URL, fetches diff and comments using gh command, then performs objective and critical code review.
tools
Use when starting the day. Organizes tasks, calendar, and context from previous sessions, then coaches through blockers on Linear issues via interactive dialogue.
testing
Create Linear issues following the Linear Method principles. Use when the user wants to create an issue, task, or ticket in Linear. Enforces clear task descriptions instead of user stories.