Automate daily briefings into personal Spotify podcasts with OpenClaw and the Save to Spotify CLI

A developer on the OpenClaw team built a personal briefing pipeline that produces a private Spotify podcast episode every morning. The setup uses OpenClaw's skill system and the newly released Save to Spotify CLI, which is open-source and available on ClawHub.
How it works
- OpenClaw runs daily at 7am.
- It pulls overnight Slack threads, GitHub notifications, and calendar events.
- Summarizes everything into a structured briefing (top 5 items, ordered by urgency).
- Generates a transcript and renders it as mp3 audio.
- Calls the Save to Spotify CLI to upload the mp3 as a private episode.
By the time the developer is on their commute, the episode is in their Spotify library. They listen at 1.5x speed and are caught up before their first meeting.
Installation and setup
The skill is published on ClawHub under @spotify/save-to-spotify. One install — no manual manifest wiring. Under the hood, the project exposes a skill manifest under agents/skills/, and your OpenClaw agent picks it up automatically.
The project is open source: github.com/spotify/save-to-spotify
Tips from production use
- Give OpenClaw a strict format — the developer uses "top 5 things, in order of urgency".
- Write summaries aimed at audio: short sentences, no bulleted asides.
- Timeline mode is useful for referencing external links, screenshots, diagrams.
This pipeline replaced the developer's morning Slack-scrolling ritual entirely.
📖 Read the full source: r/openclaw
👀 See Also

Testing δ-Mem on Apple Silicon: MLX Implementation and Benchmarks
δ-mem paper implemented via mlx on a MacMini 64GB shows mixed but promising local benchmarks, with gains in realistic replay scenarios.

Stop Re-Teaching Claude Code Every Session: Use a Persistent Config
A Reddit user explains how they saved 20 minutes per session by writing a persistent config for Claude Code, eliminating repetitive steering and achieving 33% faster completions.

Canopy: Terminal Dashboard for Managing Multiple Claude Code Agents
Canopy is an open source terminal UI that provides a single dashboard view for tracking multiple AI coding agents running across git worktrees. It shows agent states (running, idle, waiting for input, done, errored) and lets you jump into sessions or send input without fully switching.

Claw Code Agent: Python Reimplementation of Claude Code Architecture for Local Models
Claw Code Agent is a Python reimplementation of the Claude Code agent architecture that runs with local open-source models through OpenAI-compatible backends like vLLM and Ollama, featuring tool calling, slash commands, and tiered permissions.