ソース情報
- リポジトリ
- THU-SAGE/syll
- ソースの最終更新活動
- 2026年5月9日 12:38
- 検出された SKILL.md の言語
- 英語
- スター
- 303
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/THU-SAGE/syll --skill morning-podcastコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | morning-podcast |
| description | Generate a short spoken morning news briefing as an audio clip. |
| metadata | {"syll":{"emoji":"🎙","always":false}} |
Triggered either by the user saying "morning podcast" / "晨间播客" or
by a cron job that runs this skill on a schedule. The output is a
single audio file (via the speak tool) that the web frontend will
auto-render as an <audio> element; if the job is delivering to a
messaging channel, the MP3 travels along the outbound message.
Collect stories. Use web_search to gather 3–5 items across
tech, world, and markets. One or two searches is usually enough:
web_search(query="今日科技头条", count=5)
web_search(query="today world news", count=5)
Skim titles/snippets, pick the most substantive stories, and drop anything paywalled or clickbait-y.
Summarize in spoken form. For each story, write ~80–120 Chinese characters (or ~40 English words). No markdown. No URLs in the spoken body — reference the outlet by name instead. Rewrite headlines into natural narration ("今天…", "另一边…").
Compose one script. Assemble a single continuous string:
{{ghost_name}}, e.g. "{{ghost_name}} 早安播
报,今天是 X 月 Y 日。"Call speak exactly once with the full script:
speak(text="<full assembled script>")
A single call yields the best prosody. Do not call speak
per-item — concatenating multiple clips sounds choppy.
Reply briefly. One sentence summarizing what's in the briefing
(e.g. "今日播报已生成:科技 / 市场 / 国际 共 4 条"). The audio
itself is attached through the tool result's media — you don't
need to repeat the script in the reply.
web_search (not web.search) and speak.speak fails, fall back to a text-only briefing and tell the
user why ("TTS unavailable: …").