Review Recent Sessions logo

Review Recent Sessions

Organization
ed3dai
review-recent-sessions

Use when the user wants to review their recent Claude Code sessions for patterns — analyzes the last N sessions (default 5) in the current project, dispatching parallel reviewers per session, then synthesizing cross-session findings

Overview

Publishered3dai
Repositoryed3d-plugins
Skill namereview-recent-sessions
Stars
249
Forks
33
Bundled files
Instructions only
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by ed3dai on GitHub. Read the source before you install it.

Installation

Install the Review Recent Sessions AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/ed3dai/ed3d-plugins.git /tmp/ed3d-plugins
mkdir -p .claude/skills
cp -r /tmp/ed3d-plugins/plugins/ed3d-session-reflection/skills/review-recent-sessions .claude/skills/review-recent-sessions
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Review Recent Sessions in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Review Recent Sessions on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Review Recent Sessions is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Review Recent Sessions

Review multiple recent sessions from the current project directory to identify cross-session patterns.

Do not use nested subagents. This workflow may dispatch first-level reviewer and synthesis agents. Those agents must read the provided files directly and must not dispatch additional subagents.

Prerequisites

  • The ed3d-extending-claude plugin must be installed.
  • The ed3d-session-reflection plugin must be installed (provides the conversation-reviewer agent and reduce-transcript.py script).
  • The current session's transcript path must be available (to determine the project directory).

Invocation

The user may invoke this as:

  • /review-recent-sessions — review last 5 sessions
  • /review-recent-sessions 10 — review last 10 sessions

Steps

1. Find the project's session directory

Use the current session's transcript path to determine the project directory. The transcript path looks like:

~/.claude/projects/-Users-ed-Development-.../SESSION_ID.jsonl

The directory containing it is the project's session directory.

If you cannot determine the project directory, ask the user.

2. List recent sessions

Find the most recent JSONL files in the project directory, sorted by modification time, limited to the requested count (default 5).

bash
ls -t "<project_session_dir>"/*.jsonl | head -<count>

Exclude the current session's transcript (the user doesn't want to review the review session itself).

If fewer than 2 sessions are found, tell the user there aren't enough sessions to do a cross-session review and suggest using /review-session instead.

3. Reduce all transcripts

Create a working directory:

bash
mkdir -p /tmp/session-review-batch

For each session, run the reduction script:

bash
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/reduce-transcript.py" "<session.jsonl>" "/tmp/session-review-batch/reduced-<N>.txt"

This can be done in a single bash command with a loop.

4. Dispatch parallel reviewers

For each reduced transcript, dispatch a conversation-reviewer agent in the background:

Transcript path: /tmp/session-review-batch/reduced-N.txt Write your findings to: /tmp/session-review-batch/findings-N.md

Read the transcript, analyze it, and write your findings following your output format. Do not dispatch or invoke any subagents.

Dispatch ALL reviewers in a single message to maximize parallelism. Tell the user you've dispatched N reviewers and are waiting for results.

5. Synthesize findings

Once all reviewers complete, dispatch a general-purpose Sonnet agent to synthesize:

Read all findings files in /tmp/session-review-batch/findings-*.md

Produce a synthesis that identifies:

  1. Recurring patterns — issues that appear across multiple sessions. These are the highest-value findings because they represent systematic problems.

  2. Progression — is the user getting better or worse at prompting over time? Is the agent handling certain tasks better or worse?

  3. Highest-impact recommendations — across all sessions, which recommendations would have the biggest effect? Prioritize:

    • CLAUDE.md changes (things the user keeps correcting)
    • Hooks (behaviors that should be enforced automatically)
    • Skills/workflows (multi-step processes that keep being done manually)
  4. Session-specific highlights — any single-session finding that's particularly noteworthy even if it didn't recur.

Write your synthesis to /tmp/session-review-batch/synthesis.md

Format as Markdown. Be specific — reference which sessions showed which patterns. Be concise — this is a summary, not a repetition of individual findings. Do not dispatch or invoke any subagents.

6. Present synthesis

Read /tmp/session-review-batch/synthesis.md and present the full synthesis to the user.

If any individual session findings are particularly interesting, mention that the user can find per-session details in /tmp/session-review-batch/findings-N.md.

Frequently asked questions

What does the Review Recent Sessions AI skill do?

Use when the user wants to review their recent Claude Code sessions for patterns — analyzes the last N sessions (default 5) in the current project, dispatching parallel reviewers per session, then synthesizing cross-session findings

Why use Review Recent Sessions on TypingMind?

Because you install it once and use it with any model. Review Recent Sessions is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Review Recent Sessions in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/ed3dai/ed3d-plugins/tree/main/plugins/ed3d-session-reflection/skills/review-recent-sessions. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Review Recent Sessions?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Review Recent Sessions?

As many as you like. As long as a model supports skills, you can use Review Recent Sessions with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Review Recent Sessions AI skill free?

It is published on GitHub by ed3dai. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇