smithery.ai

summarize-session

Get a detailed summary of what's happening in a Claude Code tmux session

First seen Mar 24, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,833 B
  • docs SUMMARY.md 97 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Summarize Session

Capture and analyze a session's recent activity.

Arguments

$ARGUMENTS: <session-name>

Instructions

  1. Validate session exists:

``bash tmux has-session -t "<sessionname>" 2>/dev/null || echo "NOTFOUND" ``

  1. Capture extended output (500 lines):

``bash "$PLUGINDIR/bin/capture-session" "<sessionname>" 500 ``

  1. Analyze the output to identify:

- Current state: working, idle, stuck, waiting for input - Recent tool calls: Look for markers (Read, Edit, Bash, etc.) - Files being worked on: Paths mentioned in tool calls - Current task: What is Claude working on? - Errors/warnings: Any error messages or failures - Progress: What has been accomplished?

  1. Output structured summary:

```markdown # Session Summary: <session_name>

## Current State <working/idle/stuck/waiting>

## Current Task <description of what Claude is doing>

## Recent Activity - <tool call 1> - <tool call 2> - ...

## Files Touched - <file 1> - <file 2>

## Errors/Issues <any errors or None>

## Progress <summary of what's been done> ```

Example

/session-tools:summarize-session ai-worker-001

# Session Summary: ai-worker-001

## Current State
working

## Current Task
Implementing user authentication API endpoints

## Recent Activity
- Read src/api/routes.ts
- Edit src/api/auth.ts (added login endpoint)
- Bash: npm test
- Read test output

## Files Touched
- src/api/routes.ts
- src/api/auth.ts
- src/api/middleware/auth.ts

## Errors/Issues
None

## Progress
- Created login endpoint
- Added JWT token generation
- Currently writing tests