원클릭으로
resumelastsession
Resume the last work session — load the previous session, project context, and new data since yesterday.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Resume the last work session — load the previous session, project context, and new data since yesterday.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generates a complete eval.json for a Claude Code skill via 2-pass pipeline — local draft with Ollama (qwen2.5-coder:14b, $0, ~3min) then Sonnet refinement (claude -p headless, $0 via Max subscription). Launches final verify-eval for validation. Use when you want to cover a skill that doesn't yet have an eval.json, or in batch across multiple skills. Target: increase coverage of the skill auto-evaluation loop (ticket auto-evals-binaires-evaluateskills). Ex: /author-eval closeweek, /author-eval (no arg → interactive list), /author-eval --random 5 (batch).
End-of-day wrap-up — synthesize sessions, update daily note with observed patterns, detect WIP hobby in progress, verify essay-check overdue. Trigger when the user says one of these phrases: "closeday", "I'm stopping", "I'm done", "that's finished", "end of session", "good night", "good day", "stopping for today", "that's enough", "day finished", "I'm stopping now", "it's done" or via /closeday.
Guided commit on explicit request /commit — breaks changes into atomic commits ordered by layer, passes two validations (file selection, then message), handles branch (creation/switch with stash), then executes git add + git commit. Use whenever the user says /commit, 'commit that', 'make the commit', or wants to commit finished work. Never push, merge, rebase or reset EVER. Never commit outside this skill.
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
Scan the daily notes to extract ideas to capitalize on and links to process. Use when the user says "harvest", "do the harvest", "scan my notes", or when /harvest is late in the command-tracker, or at the end of a session if daily notes have been mentioned.
Complete vault scan over an extended period to detect emerging patterns, recurring ideas across different contexts, and deep connections. Use once a month or when the user says "harvest deep", "deep harvest", "analyze the vault".
| name | resumelastsession |
| description | Resume the last work session — load the previous session, project context, and new data since yesterday. |
Use Bash to list the .md files in the {VAULT_PATH}/{CLAUDE_CODE_FOLDER}/Sessions/ folder and filter only files in the YYYY-MM-DD.md format (pattern ^[0-9]{4}-[0-9]{2}-[0-9]{2}\.md$) — proposals-*.md files are excluded.
ls "{VAULT_PATH}/{CLAUDE_CODE_FOLDER}/Sessions/" | grep -E '^[0-9]{4}-[0-9]{2}-[0-9]{2}\.md$' | sort | tail -1
Extract the file with the highest date.
If no file exists: report and suggest {USER_NAME} start from today's daily note (00 - Daily notes/YYYY-MM-DD.md).
Read the entire session file.
Identify the latest section ## Session [HH:MM] (the most recent in the file).
## Session section exists → report "Session file malformed" and suggest daily note fallbackExtract exactly in this order (and list the sections found):
Note explicitly in the summary: any section absent or empty.
In parallel, identify the project from the session content, or ask the user to specify.
If the project could be identified:
{VAULT_PATH}\{PROJECTS_FOLDER}\[Project]\claude-code\README.mdCheck if the session is dated before today (time gap):
00 - Daily notes/YYYY-MM-DD.md)Display in this format:
📂 Session from [date] at [HH:MM]
✅ Accomplished:
[chronological list of accomplishments, or "(none noted)"]
⏭️ Next step:
[defined action, or "(to be defined)"]
🧭 {USER_NAME}'s state:
[observation or "(no notes)"]
[If time gap and daily note with content]
📋 New context since yesterday:
[summary of today's daily note, or "no changes"]
---
Project identified: [project name] | Context loaded.
Important: At the end of the summary, {USER_NAME} must validate before proceeding. Ask "Ready to continue?" or wait for their next instruction.