Our review
Launches an interactive Spotify Wrapped-style slideshow of your Claude Code usage stats in a new terminal window.
Strengths
- Provides a visual and interactive recap of your activity
- Easy to trigger (single command)
- Cross-platform support (Windows and Unix)
Limitations
- Requires Python 3 to be installed
- The wrapped.py script must exist in the skill directory
- Only works with Claude Code
When you want a fun, visual year-in-review summary of your Claude Code usage.
If you lack sufficient usage data or prefer plain-text stats.
Security analysis
SafeThe command launches a local Python script in a new terminal window without performing any destructive or data exfiltration actions.
No concerns found
Examples
Show me my Claude Code WrappedI'd like to see my usage stats for this year/wrappedname: wrapped description: "Launch Claude Code Wrapped — an interactive Spotify Wrapped-style slideshow of your Claude Code usage stats in a new terminal window. Use when the user asks for their Claude Code usage summary, wants a year-in-review recap, mentions 'wrapped', or types /wrapped." disable-model-invocation: true allowed-tools: Bash
Run the following command exactly, then respond with only this message — nothing else:
Claude Code Wrapped is opening in a new window — use SPACE / ENTER to advance slides, Q to quit.
If the command fails, respond: "Wrapped failed to launch — make sure Python 3 is installed and try again."
python3 -c "
import subprocess, os, sys
script = '${CLAUDE_SKILL_DIR}/wrapped.py'
if not os.path.exists(script):
print('Error: wrapped.py not found'); sys.exit(1)
kw = {'creationflags': subprocess.CREATE_NEW_CONSOLE} if os.name == 'nt' else {'start_new_session': True}
subprocess.Popen([sys.executable, script], **kw)
"
Task Prioritizer
Productivity
Prioritizes your tasks using Eisenhower, ICE, and RICE frameworks.
Weekly Status Report Generator
Productivity
Generate structured and concise weekly status reports.
Daily Standup Report
Productivity
Generates structured and concise daily standup reports.