Spotifyに保存された番組の章スキップ再生(特定の箇所へのジャンプ)を設定します。プレイヤーのスキップボタンが、15秒の巻き戻し・早送りの代わりに、章と章の間を移動するようになります。この機能は明示的に呼び出す必要があります。 次のような場合に使用: ユーザーが「チャプタースキップ」「チャプター飛ばし」「トピックスキップ」などの言葉で明確に指示した場合のみ。勝手に自動で機能を有効にしてはいけません。
Configure chapter-skip playback on a Save to Spotify show — the player's skip buttons jump between chapters instead of seeking 15 seconds. Must be explicitly invoked; use ONLY when the user explicitly says skip-to-topic, skip-to-chapter, chapter skipping, chapter skip, or an equivalent phrase. Never trigger proactively.
ポッドキャストはチャプタースキップ再生を有効にできます。この設定を使うと、Spotifyプレーヤーのスキップ前後ボタンが、15秒単位ではなく、次のチャプタ(章)や前のチャプタに移動するようになります。この設定はポッドキャスト単位で指定でき、そのポッドキャストのすべてのエピソードに適用されます。
ユーザー向けの表示では、スキップ前ボタンの動作として2つの選択肢があります。
15秒 — デフォルト設定; 特に設定は不要次のチャプタ — チャプタスキップ再生; 以下のルールに従って有効化次のチャプタ はユーザーが明示的に要求した場合のみ有効化してください。以下のような要求フレーズを探してください。
skip-to-topicskip-to-chapterchapter skippingchapter skip独断で有効化したり、質問として提示したり、コンテンツの種類から推測(例:「これは講義だからチャプタがあると便利」)してはいけません。ユーザーがトリガーフレーズを述べなかった場合、このスキルは適用されません。
ユーザーは計画確認の段階(生成前)でスキップ動作を変更できます。計画にはスキップ動作が常に表示されており、ここでユーザーが 次のチャプタ に変更した場合も明示的な要求として扱われます(15秒 に戻す操作は要求を撤回します)。
チャプタスキップはポッドキャスト作成時 に shows create コマンドの --playback-control フラグで設定します。
save-to-spotify --json shows create \
--title "My Show" \
--summary "Description" \
--image cover.jpg \
--playback-control chapter-skip
JSON 出力で設定が確認できます。
{"show_uri": "spotify:show:abc123", "playback_control": "chapter-skip"}
出力の playback_control フィールドはバックエンド(後処理システム)で検証されたもので、フラグから単に反映されたものではありません。フラグを指定したのに出力に playback_control がない場合、バックエンドが設定を適用できなかったということです。ポッドキャストは作成されていますが、デフォルト再生設定のままです。再試行すれば同じリクエストが送信されるので、削除して再作成してはいけません。ただし、黙って続行してもいけません。ユーザーに伝えて、チャプタスキップなしで続行するか、それとも失敗を報告して中止するか確認してください。
チャプタスキップ対応のポッドキャストにエピソードを追加する場合、まず上記のフラグを使ってポッドキャストを作成し、その後 --show-id で アップロードしてください。upload --new-show は使わないでください(再生制御が設定できません)。
SHOW_URI=$(save-to-spotify --json shows create --title "My Show" --image cover.jpg --playback-control chapter-skip | jq -r .show_uri)
save-to-spotify --json upload episode.mp3 --title "Episode 1" --image ep-cover.jpg --show-id "$SHOW_URI"
チャプタは必須です。 このスキップ機能を活用するには、ポッドキャストのエピソードにタイムラインチャプタ(timeline set で設定)が必要です。スキップする対象がないと意味がありません。save-to-spotify スキルのタイムラインパイプライン標準に従い、チャプタスキップ対応ポッドキャストではチャプタを省くことなく必ず設定してください。
作成時のみ設定可能。 ポッドキャストのメタデータは変更不可のため、既存のポッドキャストにこの設定を後から追加・削除できません。ユーザーが既存ポッドキャストでこの機能を有効にしたい場合、そのポッドキャストを削除して再作成する必要があります。これはすべてのエピソードも削除します。実行前に必ずユーザーに確認してください。
結果を明示してください。 エピソードの準備が完了した後の最終確認で、スキップ動作を明記してください(計画確認の段階で既に表示されていますが、再度確認します)。
Shows can opt into chapter-skip playback: in the Spotify player, the skip forward/back buttons jump to the next/previous chapter instead of seeking 15 seconds. The setting is per-show and applies to all of the show's episodes.
In user-facing wording this is the skip-forward action, with two options:
15 seconds — the default; nothing to configureNext chapter — chapter-skip playback, enabled per the rules belowNext chapter must be explicitly requested by the user — "say the magic word." Trigger phrases:
skip-to-topicskip-to-chapterchapter skippingchapter skipDo not enable it on your own initiative, offer it as an interview question, or infer it from content type (e.g. "this is a lecture, chapters would be nice"). If the user did not say a trigger phrase, this skill does not apply.
The user can also override the skip-forward action at the plan confirmation step, before anything is generated: the plan always displays the current action, and the user switching it to Next chapter there counts as an explicit request (switching back to 15 seconds withdraws it).
Chapter skip is set when the show is created, via the --playback-control flag on shows create:
save-to-spotify --json shows create \
--title "My Show" \
--summary "Description" \
--image cover.jpg \
--playback-control chapter-skip
The JSON output confirms the setting:
{"show_uri": "spotify:show:abc123", "playback_control": "chapter-skip"}
The playback_control field in the output is confirmed by the backend, not echoed from the flag. If it is missing after you passed --playback-control, the backend did not apply the setting — the show was still created, but with default controls. Retrying sends the identical request, so do not delete and recreate. Do not proceed silently either: tell the user and ask whether to continue without chapter skip or stop and report the failure.
When producing an episode for a chapter-skip show, create the show first with the flag above, then upload with --show-id — do not use upload --new-show (it cannot set playback control):
SHOW_URI=$(save-to-spotify --json shows create --title "My Show" --image cover.jpg --playback-control chapter-skip | jq -r .show_uri)
save-to-spotify --json upload episode.mp3 --title "Episode 1" --image ep-cover.jpg --show-id "$SHOW_URI"
timeline set) — otherwise there is nothing to skip to. Follow the main save-to-spotify skill's timeline pipeline; never skimp on chapters for a chapter-skip show.原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。