一键导入
session-log
Append a structured session summary to today's daily note under the Log section. Run this at the end of a session to capture what was done.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Append a structured session summary to today's daily note under the Log section. Run this at the end of a session to capture what was done.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Weekly backlog audit — field completeness, staleness tiers, and duplicate detection. Run during grooming to clean up the backlog.
Creates a JIRA Bug with steps to reproduce, expected/actual behavior, and fix criteria. Activates when users ask to create a bug report, file a bug, or report an issue.
Creates a JIRA Epic with scope, success criteria, and child story breakdown. Activates when users ask to create an epic.
Creates a JIRA Story with user story format, acceptance criteria, and technical notes. Activates when users ask to create a story or user story.
Creates a JIRA Task for tech debt, infrastructure, documentation, or spike work. Activates when users ask to create a task, spike, tech debt ticket, or infrastructure work.
Daily briefing — sprint progress, new tickets, and recent comments in one report. Run this to get oriented at the start of the day.
| name | session-log |
| description | Append a structured session summary to today's daily note under the Log section. Run this at the end of a session to capture what was done. |
| allowed-tools | ["mcp__obsidian__read_note","mcp__obsidian__patch_note","mcp__obsidian__write_note","Bash"] |
| argument-hint | [optional summary] |
Append a structured summary of the current session's work to today's daily note under #### Log.
date +%Y-%m-%d via BashDaily/YYYY-MM-DD.md using mcp__obsidian__read_notemcp__obsidian__write_note with pre-rendered template content (see Template section below). Then proceed with the patch.[project-name] if working in a specific repo (use the directory name)#### Log section in the note content. The section runs from #### Log to the next #### heading (#### A day in review).mcp__obsidian__patch_note:
#### Log and #### A day in reviewoldString as that exact block (including the leading #### Log\n and trailing whitespace before #### A day in review)newString as the same block with the new entries appended- ), replace it with the new entriesIf the current section is:
#### Log
-
#### A day in review
And the new entry is - [ducky] Built webby plugin for Obsidian vault integration, the patch would be:
oldString: #### Log\n- \n\n#### A day in reviewnewString: #### Log\n- [ducky] Built webby plugin for Obsidian vault integration\n\n#### A day in reviewIf the section already has entries:
#### Log
- [hyperfleet] Reviewed adapter PR #52
#### A day in review
Then:
oldString: #### Log\n- [hyperfleet] Reviewed adapter PR #52\n\n#### A day in reviewnewString: #### Log\n- [hyperfleet] Reviewed adapter PR #52\n- [ducky] Built webby plugin\n\n#### A day in reviewIf patch_note fails (e.g., content was modified between read and patch), fall back to mcp__obsidian__write_note with mode: "append" and tell the user the entries were appended to the end of the file and may need manual repositioning under #### Log.
Each entry should be:
[project-name] when applicableGood examples:
- [hyperfleet] Reviewed adapter status aggregation PR, left feedback on error handling edge case
- [ducky] Designed webby plugin architecture for Obsidian vault integration
- Researched MCP server options for cross-project vault access, chose MCPVault
- [homelab] Configured Ambient mesh on NUC cluster, hit DNS resolution issue with eastwest gateway
Bad examples (too vague or too detailed):
- Worked on stuff
- Read 15 files, searched for 3 patterns, found the bug in line 42 of server.go where the error handling was missing a nil check on the response body reader which caused a panic when the upstream service returned a 502
If the daily note does not exist, create it with this pre-rendered content (replace YYYY-MM-DD and the full date string with the actual date):
---
date: YYYY-MM-DD
type: daily
tags:
- daily
---
# DayOfWeek, Month D, YYYY
#### To Dos
- [ ]
#### Log
-
#### A day in review
#### Gratitude
#### Related Notes
- Projects:
- Meetings:
- Learning:
Use Bash to compute the full date string: date +"%A, %B %-d, %Y".