continue-session
Restore context from a named or latest session checkpoint. Use when: (1) user says "продолжи", "continue", "что было в прошлой сессии", (2) starting work after a crash or context overflow, (3) "resume", "восстанови контекст", "где я остановился". Supports named sessions: /continue vpn-fix
Best use case
continue-session is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Restore context from a named or latest session checkpoint. Use when: (1) user says "продолжи", "continue", "что было в прошлой сессии", (2) starting work after a crash or context overflow, (3) "resume", "восстанови контекст", "где я остановился". Supports named sessions: /continue vpn-fix
Teams using continue-session should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/continue-session/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How continue-session Compares
| Feature / Agent | continue-session | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Restore context from a named or latest session checkpoint. Use when: (1) user says "продолжи", "continue", "что было в прошлой сессии", (2) starting work after a crash or context overflow, (3) "resume", "восстанови контекст", "где я остановился". Supports named sessions: /continue vpn-fix
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Continue Session — Named Context Recovery
Restore session context from named checkpoint + memory + git.
## Resolution Order
### If name provided: `/continue vpn-fix`
1. Look for `sessions/vpn-fix.md`
2. If not found → fuzzy search (grep session names)
3. If still not found → show available sessions and ask user
### If no name: `/continue`
1. Read `last-session.md` or `sessions/_latest.md`
2. If neither exists → fall through to memory search
## Sources (check in order)
### 1. Named Checkpoint File (primary)
<!-- 📌 НАСТРОЙТЕ: путь к вашему проекту -->
```
~/.claude/projects/<YOUR-PROJECT-PATH>/memory/sessions/{name}.md
```
Read fully. Contains: goal, done, pending, modified files, continuation prompt.
### 2. Memory MCP (enrichment)
```
mcp__memory__search_nodes("Session-Checkpoint-{name}")
mcp__memory__search_nodes("<keyword from checkpoint goal>")
```
Add recent observations that relate to the checkpoint topic.
### 3. Git State
```bash
git status --short
git log --oneline -5
git diff --stat
```
## Recovery Flow
1. **Resolve checkpoint** — by name or latest
2. **Read checkpoint file** — if exists and <7 days old → use as primary source
3. **Enrich from memory** — search for related entities/observations
4. **Check git** — verify files from checkpoint still match, no unexpected changes
5. **Present summary:**
```
## Session Recovered: {name}
**From:** <checkpoint timestamp>
**Goal:** <what was being done>
**Progress:** <X done, Y pending>
### Done:
- ...
### Next Steps:
- ...
### Modified Files:
- ...
### Key Context:
- ...
Продолжаем? (или скорректируй направление)
```
6. **Wait for user confirmation** before acting
## Rules
- NEVER start working without showing the recovery summary first
- If checkpoint is >7 days old — warn: "Checkpoint устарел ({N} дней). Проверь актуальность."
- If checkpoint is >24h old but <7 days — note age but proceed normally
- If no checkpoint AND no recent sessions — say so honestly
- If checkpoint mentions pending tasks — ask "Продолжаем с [first pending]?"
- Proactive: check if any pending items were completed by other sessions (git log)
## Fallback Chain
```
Named checkpoint → last-session.md → memory search → git log → Ask user
```
Each level adds context. Never skip to "ask user" if data exists.Related Skills
session-status
Statusline shown in Claude Code UI status bar via settings.json. No action needed in responses.
session-save
Compress and save current session context for handoff to next session. Use when: (1) context pressure >50%, (2) user says "сохрани сессию", "session save", "checkpoint", (3) before ending a long productive session, (4) switching to a different task mid-session. Supports named sessions: /session-save vpn-fix
writing-content
Интерактивный процесс написания текстов для вайб-маркетинга на основе Julian Shapiro framework. **Новые возможности (v2.0):** - Research & Gap Analysis (Perplexity → WebSearch fallback) - Scoring 0-5 вместо binary (Novelty + Resonance + Hook + Clarity) - AI-Slop Detection на всех этапах (10 типов patterns) - 3 варианта intro с self-scoring - Markdown export всех промежуточных результатов **Русские triggers:** "напиши пост по шапиро", "написать статью по фреймворку шапиро", "создай текст в стиле julian shapiro", "помоги написать контент по методу shapiro", "контент по julian shapiro фреймворку", "пост по julian shapiro", "напиши в стиле шапиро" **English triggers:** "write content using julian shapiro framework", "create post with shapiro method", "write article shapiro style", "help with julian shapiro writing" **Generic triggers:** "напиши статью", "помоги написать контент", "создай текст", "начать писать", "хочу написать пост", "нужна помощь с текстом", "write content", "write article", "создай контент", "придумай идею для статьи", or requests help with content creation process.
YT Transcribe — YouTube → Whisper → Obsidian
Транскрибирует YouTube-видео через mlx-whisper (Apple Silicon, Metal-native) с параллельными чанками.
/tg-saved v2 — Telegram Saved Messages → Deep Analysis → Obsidian
## Назначение
summarize-comments
Делает LLM-выжимку из комментариев менеджеров об одном или нескольких подрядчиках. Используй этот скилл когда нужно понять что говорят менеджеры о конкретном подрядчике, или получить JSON с выжимкой для дальнейшей обработки.
skill-security
This skill activates when the user mentions "security audit", "skill audit", "проверка безопасности скилла", "аудит скилла", "skill-security", "проверить скилл", "пересобрать скилл", "rebuild skill", "security check", "dual memory audit", "credential isolation check". Also activates on /skill-security command. Use this skill when the user wants to audit, validate, or rebuild any Claude Code skill for security compliance.
compress
Info-Compressor: compress text/context by 60-70% without losing meaning. Use when: (1) context pressure >50%, (2) user says "сжать", "compress", "compact", (3) need to fit more context into remaining window, (4) preparing handoff blob for next session.
seo-strategist
Strategic SEO planning and analysis toolkit for site-wide optimization, keyword research, technical SEO audits, and competitive positioning. Complements content-creator's on-page SEO with strategic planning, topic cluster architecture, and SEO roadmap generation. Use for keyword strategy, technical SEO audits, SERP analysis, site architecture planning, or when user mentions SEO strategy, keyword research, technical SEO, or search rankings.
roi-razvitie-draft
Generates a draft meeting document for the weekly "Roi Развитие" (Wednesday, product Roi Navigator). Use when the user asks for a draft for the meeting, for Wednesday's doc, for "Roi Развитие", or for the weekly team meeting agenda.
project-knowledge-base
Collects, structures and maintains a Project Knowledge Base (PKB.md) in Obsidian for a marketing agency. Aggregates data from Google Drive, Gmail, Telegram (group chat and DMs via MTProto), moo.team tasks/comments, and local Obsidian meeting transcripts. Uses async parallel collection and a two-stage LLM pipeline for init. Use when the user wants to initialize, update or enrich a project's knowledge base, mentions PKB, project knowledge base, синхронизация проекта, база знаний проекта, init_project_knowledge, update_project_knowledge, or ad_hoc_add_context.
product-strategist
Strategic product leadership toolkit for Head of Product including OKR cascade generation, market analysis, vision setting, and team scaling. Use for strategic planning, goal alignment, competitive analysis, and organizational design.