ワンクリックで
save-session-context
Save current session state for later resumption. Use after completing workflow phases or before ending a session.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Save current session state for later resumption. Use after completing workflow phases or before ending a session.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Process GitHub Issues - fetch open issues, read comments, analyze suggestions, find similar, create Beads tasks, propose fix plan
Process error logs from admin panel - fetch new errors, analyze, create tasks, fix, and mark resolved. Checks Axiom/Pino if DB entries are filtered.
Anti-AI-slop design skill for greenfield pages, audits, redesigns, and design extraction from URLs or screenshots. Use when the user asks to build a new app or landing page, wants to redesign something, invokes Hallmark by name, or uses audit/redesign/study.
Generate comprehensive role guides (job descriptions on steroids) for any position. Multi-phase workflow with web research, adaptive questions, 26 content blocks based on Netflix/Amazon/Toyota/Spotify/Bridgewater best practices, and course brief generation. Use /job-description to create a role guide.
Inline orchestration workflow for dead code detection and removal with Beads integration. Provides step-by-step phases for dead-code-hunter detection, priority-based cleanup with dead-code-remover, and verification cycles.
Inline orchestration workflow for dependency audit and updates with Beads integration. Provides step-by-step phases for dependency-auditor detection, priority-based updates with dependency-updater, and verification cycles.
| name | save-session-context |
| description | Save current session state for later resumption. Use after completing workflow phases or before ending a session. |
| trigger | After completing a workflow phase, before session end, or when switching to different task |
Saves the current workflow state to enable seamless session resumption.
Collect the following information:
Run git status and git log -1 to capture:
Based on current phase and workflow, identify:
Write to .tmp/current/session/context.md:
# Session Context
> Auto-generated by save-session-context skill. Updated: [ISO timestamp]
## Current State
- **Workflow:** [workflow-name]
- **Phase:** [current]/[total] ([phase-name])
- **Priority:** [priority-level] ([completed] of [total] fixed)
- **Last Action:** [description]
## Active Files
[List from git status]
## Next Steps
1. [Next action]
2. [Following action]
3. [Third action]
## Git State
- **Branch:** [branch-name]
- **Uncommitted:** [count] files
- **Last Commit:** [hash] "[message]"
## Quality Gate Status
- **Type-check:** [status]
- **Build:** [status]
- **Tests:** [status]
## Resume Instructions
To continue this session:
1. Read this file to understand current state
2. Read `session-log.md` for recent decisions
3. Continue from "Next Steps" section
Output confirmation message with file path.
# Get git state
git status --porcelain | wc -l # Uncommitted count
git log -1 --format="%h %s" # Last commit
git branch --show-current # Current branch
Confirmation message:
Session context saved to .tmp/current/session/context.md
- Workflow: health-bugs
- Phase: 3/7 (Staged Fixing)
- Uncommitted: 2 files
resume-session — Read saved context to continuerun-quality-gate — Update quality gate status in context