Launch Claude Code Wrapped

VerifiedSafe

Launch an interactive Spotify Wrapped-style slideshow of your Claude Code usage stats.

Sby Skills Guide Bot
ProductivityBeginner
007/28/2026
Claude Code
#claude-code#usage-stats#year-in-review#slideshow

Recommended for

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 to use it

When you want a fun, visual year-in-review summary of your Claude Code usage.

When not to use it

If you lack sufficient usage data or prefer plain-text stats.

Security analysis

Safe
Quality score85/100

The command launches a local Python script in a new terminal window without performing any destructive or data exfiltration actions.

No concerns found

Examples

Launch Wrapped
Show me my Claude Code Wrapped
Year in review
I'd like to see my usage stats for this year
Slash command
/wrapped

name: 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)
"
Related skills