# Help

> Display help for the session management system

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

---


## Quick Example

```bash
/skill:session:help
# Displays complete session management documentation
```

Show help for the session management system:

## Session Management Commands

The session system helps document development work for future reference.

### Available Commands:

- `/session-start [name]` - Start a new session with optional name
- `/session-update [notes]` - Add notes to current session
- `/session-end` - End session with comprehensive summary
- `/session-list` - List all session files
- `/session-current` - Show current session status
- `/session-resume [filename]` - Resume a previous session
- `/session-help` - Show this help

### How It Works:

1. Sessions are markdown files in `.claude/sessions/`
2. Files use `YYYY-MM-DD-HHMM-name.md` format
3. Only one session can be active at a time
4. Sessions track progress, issues, solutions, and learnings

### Best Practices:

- Start a session when beginning significant work
- Update regularly with important changes or findings
- End with thorough summary for future reference
- Review past sessions before starting similar work

### Example Workflow:

```
/session-start refactor-auth
/session-update Added Google OAuth restriction
/session-update Fixed Next.js 15 params Promise issue
/session-end
```

