# Session End

> End session following Anthropic best practices

- Skill: `ytrofr/session-end` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ytrofr/session-end`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ytrofr/session-end/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ytrofr (https://skillmd.com/u/ytrofr)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ytrofr/session-end

---


# Session End Protocol (Anthropic Best Practice)

Run these commands before ending session:

```bash
echo "=== UNCOMMITTED CHANGES ===" && git status --short
```

## Verification Checklist

Before ending this session, verify:

- [ ] All work committed or checkpointed?
- [ ] Status tracking updated with progress?
- [ ] No features left in unknown state?
- [ ] Descriptive commit message created?

## Checkpoint Command

If you have uncommitted work, create a checkpoint:

```bash
git add -A && git commit -m "checkpoint: [describe current work]"
```

---

**Remember**: Never stop mid-feature. Complete or checkpoint.

