Claude-code-blueprint save-diary
MUST use when user says 'save diary', 'write diary', 'diary entry', 'update diary', or 'document session'. Also auto-trigger at the end of any significant session (feature shipped, major bug fixed, architecture decision, new project started).
install
source · Clone the upstream repo
git clone https://github.com/faizkhairi/claude-code-blueprint
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/faizkhairi/claude-code-blueprint "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/save-diary" ~/.claude/skills/faizkhairi-claude-code-blueprint-save-diary && rm -rf "$T"
manifest:
skills/save-diary/SKILL.mdsource content
Dev Diary — Session Documentation Skill
Today's story takes shape.
Activation
When this skill activates, output: "Dev Diary — documenting today's session."
Context Guard
| Context | Status |
|---|---|
| User says "save diary" / "write diary" / "diary entry" | ACTIVE — full diary write |
| End of significant session | ACTIVE — auto-document |
| User says "review diary" | ACTIVE — read recent entries |
| Mid-conversation (no save request) | DORMANT — no diary action |
Protocol
Step 1: Monthly Archive Check
- Scan
for files from previous months{MEMORYCORE_PATH}/diary/current/ - For each file where month != current month:
- Create
folder if not exists{MEMORYCORE_PATH}/diary/archived/YYYY-MM/ - Move the file from
tocurrent/archived/YYYY-MM/
- Create
- Continue with diary write
Step 2: Find or Create Today's File
- Check if
exists{MEMORYCORE_PATH}/diary/current/YYYY-MM-DD.md - If exists: use it (will append new entry)
- If not: create new file with header:
# YYYY-MM-DD — Session N: Brief Description
Step 3: Compose and Append Diary Entry
- Get current date via bash:
or PowerShelldate +"%B %d, %Y"Get-Date -Format "MMMM dd, yyyy" - Analyze current session for key content
- Write structured entry using our actual diary format:
- Title:
# YYYY-MM-DD — Session N: Brief Description - What Happened: Concise summary of the session context and goals
- Fixes Applied / Key Changes: Specific technical work done (commits, code changes)
- Key Insight: Lessons learned or important observations
- Pending / Next Steps: What's left to do
- Title:
- Session numbering: Read the existing file first. Find the highest
number in today's entries and increment by 1. If this is the first entry of the day, check the previous day's file for the last session number and continue from there. If no previous entries exist, start at Session 1.Session N - APPEND to today's file (never overwrite existing content)
- Multiple entries per day are separated by
---
Step 4: Update Session Memory
- Update
with:{MEMORYCORE_PATH}/core/session.md- Session recap and key achievements
- Current working state for continuity
- Next steps identified
- Confirm diary entry saved
Mandatory Rules
- Always APPEND — never overwrite existing diary entries
- One file per day — multiple entries separated by
--- - Use real timestamps — get current date via system command
- Archive first — run monthly archive check before every write
- Evidence-based — document actual session content, not generic summaries
- Use our format — concise technical summaries (What Happened, Key Changes, Key Insight, Pending)
Edge Cases
| Situation | Behavior |
|---|---|
| First entry of the day | Create new file with header + first entry |
| Second+ entry same day | Append with separator |
| No significant content | Create brief entry noting session type |
| "review diary" command | Read and present recent entries from current/ |