Claude-recap list-topics
Use when the user asks about topics discussed in the current session, wants to see a topic list, or asks what has been talked about.
install
source · Clone the upstream repo
git clone https://github.com/hatawong/claude-recap
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/hatawong/claude-recap "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/list-topics" ~/.claude/skills/hatawong-claude-recap-list-topics && rm -rf "$T"
manifest:
skills/list-topics/SKILL.mdsource content
list-topics
Overview
Lists all topic slugs found in the current session's JSONL history.
Instructions
-
Get the session ID from the SessionStart injection in your context:
[SessionStart] session=SESSION_ID source=... -
Get the plugin scripts path from the SessionStart injection:
Plugin scripts path: /path/to/scripts -
Get the project ID from the SessionStart injection:
Extract the PROJECT_ID segment (e.g.Your persistent memory is stored at: $HOME/.memory/projects/PROJECT_ID/
).-Users-alex-my-app -
Run extract-topic.js with
mode:__all__
node "<plugin_scripts_path>/extract-topic.js" "$HOME/.claude/projects/<project_id>/<session_id>.jsonl" __all__
- Filter out
from the output, then present using this exact format:__untagged__
Session Topics: 1. **topic-slug-a** 2. **topic-slug-b** 3. **topic-slug-c** Current: **topic-slug-c**
Rules
- If JSONL file doesn't exist or no topics found after filtering, tell the user no topics exist yet.
- Current topic is from your topic tag (the
slug`` you've been outputting).› \