# Save Summary

> Summarizes the current conversation and saves a structured Markdown summary to session-summary.md or a timestamped file. Use when the user asks to summarize and save state, end the session, or types /save-summary.

- Skill: `ankh2054/save-summary` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ankh2054/save-summary`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ankh2054/save-summary/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: ankh2054 (https://skillmd.com/u/ankh2054)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/ankh2054/save-summary

---


# Conversation Summarizer

Summarize the current session and persist it to a file for continuity.

## Instructions

1. **Analyze** the entire conversation history of the current session.
2. **Extract** key insights, decisions made, code changes, and pending tasks.
3. **Generate** a structured Markdown summary using the template below.
4. **Write** the result to `session-summary.md` in the repo root, or to a timestamped file such as `logs/summary_YYYY-MM-DD.md` if the user prefers.

## Output template

Use this structure for the summary file:

```markdown
# Session Summary - [Date]

## 🎯 Goal
[Brief description of what we tried to achieve]

## 🧠 Key Insights (Alpha)
[High-value realizations or strategic points]

## 🛠️ Changes Implemented
- [List of files changed or logic added]

## ⏭️ Next Steps
- [Actionable items for the next session]
```

