--- name: spotify-history description: Access Spotify listening history, top artists/tracks, and get personalized recommendations via the Spotify Web API. Use when fetching a user's recent plays, analyzing music taste, or generating recommendations. Requires one-time OAuth setup. --- # Spotify History & Recommendations Access Spotify listening history and get personalized recommendations. ## Setup (One-Time) ### Quick Setup (Recommended) Run the setup wizard: ```bash bash skills/spotify-history/scripts/setup.sh ``` This guides you through: 1. Creating a Spotify Developer App 2. Saving credentials securely 3. Authorizing access ### Manual Setup 1. **Create Spotify Developer App** - Go to [developer.spotify.com/dashboard](https://developer.spotify.com/dashboard) - Click **Create App** - Fill in: - **App name:** `Clawd` (or any name) - **App description:** `Personal assistant integration` - **Redirect URI:** `http://127.0.0.1:8888/callback` ⚠️ Use exact URL! - Save and copy **Client ID** and **Client Secret** 2. **Store Credentials** **Option A: Credentials file (recommended)** ```bash mkdir -p credentials cat > credentials/spotify.json <