Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

audifyaudify 搜索

Agent Skill

audify 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

13

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:audify(audify 搜索)
来源仓库:https://github.com/jpcaparas/skills
仓库路径:skills/audify
安装命令:
npx skills add https://github.com/jpcaparas/skills --skill audify
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill audify

简介

audify 将文本或网页资源清洗后合成为语音文件,输出带时间戳的 MP3 与元数据。

  • 适用于需要将长文档、研究报告转为音频内容的场景,如播客素材准备。
  • 自动过滤代码、表格等不适合朗读的内容,保留可读性强的叙述段落。
  • 使用时应指定输入类型(URL、Markdown、DOCX 等),系统选择合适处理路径。
  • 依赖 Gemini TTS API,需注意字数限制与 API 调用配额管理。

SKILL.md

audify

Clean a readable resource into narration-safe prose, synthesize it with Gemini 3.1 Flash TTS, and write a timestamped output folder that contains an MP3, the cleaned transcript, and a manifest.

Verified against the Gemini API speech generation docs updated April 15, 2026 and the Google Cloud blog post published April 16, 2026.

Decision Tree

What kind of input are you handling?

  • A URL, markdown file, HTML file, DOCX, plain text file, or raw text that should be listened to

- Run python3 scripts/audify.py...

  • A resource that is mostly code, logs, tables, minified JSON, or other content that is not meant to be narrated

- Bail instead of forcing TTS. Explain why it is not a good narration target.

  • A request where voice or nuance is materially ambiguous

- Ask one short question before synthesis. - Use: "Which voice and delivery should I use? If you do not care, I will use Kore with a clear neutral narrator style."

  • A request where the user does not care about style details

- Default to Kore plus a clear neutral narrator nuance.

  • A longer job with multiple chunks or a large cleaned transcript

- Tell the user up front that multi-chunk TTS can take a few minutes and that quiet periods are normal. - Do not keep narrating every short poll. Prefer one expectation-setting update, then wait for chunk progress or completion.

  • Missing GEMINI_API_KEY, unavailable gemini-3.1-flash-tts-preview, missing ffmpeg, or exhausted read attempts

- Bail with the concrete failed prerequisite.

Quick Reference

TaskCommandRead
URL to MP3 bundlepython3 scripts/audify.py "https://example.com/"references/patterns.md
Local file to MP3 bundlepython3 scripts/audify.py --file templates/sample-input.md --voice Kore --nuance "Warm documentary narrator"references/patterns.md
Raw text from stdin`cat templates/sample-input.md \python3 scripts/audify.py --stdin`references/patterns.md
Clean-only suitability checkpython3 scripts/audify.py --url "https://example.com/" --check-onlyreferences/patterns.md
Live model and synthesis probepython3 scripts/probe_gemini_tts.py --mode allreferences/api.md

Reading Guide

If the user needs...Read
Raw Gemini REST shape, supported models, voices, and failure codesreferences/api.md
Env vars, key setup, ffmpeg, and prerequisite checksreferences/configuration.md
URL/file/text workflows, output bundle layout, and question-asking rulesreferences/patterns.md
Failure handling, retries, and why audify should bailreferences/gotchas.md

Operational Rules

  1. Treat SKILL.md as the entry point and keep the tool choice narrow: scripts/audify.py for production runs, scripts/probe_gemini_tts.py for live verification.
  2. Clean first, synthesize second. Strip markup, HTML, code fences, and bare URLs before TTS so the spoken transcript stays close to the readable text instead of the transport format.
  3. Preserve human text whenever possible. Keep visible anchor text, headings, paragraph content, and inline prose; drop boilerplate that is structural rather than spoken.
  4. Stop when the source is not narration-friendly. Do not read code dumps, logs, stack traces, raw tables, or binary blobs aloud just because they decoded as text.
  5. Stop when read attempts are exhausted. Do not silently fall back from a bad fetch or undecodable file to a hallucinated summary.
  6. Set runtime expectations before long runs. For multi-chunk TTS, tell the user a realistic range such as "often 2-6 minutes" and that silence between chunk completions is normal.
  7. Do not badger the user with polling updates. After the initial expectation-setting message, only report meaningful state changes such as chunk progress, retries, or final completion.
  8. Auto-split large transiently failing chunks before giving up. Keep the same voice, nuance, model, and output format while retrying with smaller chunk boundaries.

Output Contract

By default scripts/audify.py creates audify-output/<timestamp>-<slug>/ under the current working directory.

The folder contains:

  • audio.mp3 by default
  • cleaned.txt with the final spoken transcript
  • manifest.json with source, voice, nuance, chunking, and retry metadata
  • runtime expectations in both the wrapper output JSON and the status stream
  • fallback chunk-split metadata when a large chunk had to be retried in smaller pieces

Use --format wav when MP3 conversion is not wanted.

Gotchas

  1. Gemini TTS returns PCM, not MP3: The Gemini API returns base64 PCM audio. This skill converts it locally with ffmpeg, so missing ffmpeg is a hard stop for the default MP3 path.
  2. Gemini 3.1 Flash TTS can throw transient 500 errors: Google documents rare cases where the model emits text tokens instead of audio tokens. The wrapper retries transient failures with backoff.
  3. Vague prompts can get rejected or spoken aloud: The wrapper uses an explicit "synthesize speech only" preamble and a labeled TRANSCRIPT section so instructions do not become narration.
  4. Voice and prompt can clash: Google warns that strong speaker mismatches can sound wrong. When the user asks for a very specific persona, make sure the selected voice and nuance point in the same direction.
  5. HTML extraction is best-effort: Blog chrome, nav text, or legal footer text can still leak through on messy pages. If the cleaned preview looks wrong, stop and ask for a narrower source.
  6. Long silence is not the same as failure: A multi-chunk run can spend a couple of minutes inside Gemini calls and local MP3 conversion. Do not treat every quiet 30-second interval as a problem.
  7. A single large chunk can still fail transiently: When that happens, the wrapper should split just that chunk into smaller pieces and continue with the same voice, nuance, model, and format instead of forcing a full manual rerun.

Helper Scripts

  • scripts/audify.py is the production wrapper for URL, file, stdin, and raw text inputs.
  • scripts/probe_gemini_tts.py runs safe live probes against model discovery and short synthesis.
  • scripts/test_audify_unit.py covers cleaner, chunking, DOCX extraction, and bail heuristics.
  • scripts/validate.py checks structure, cross-references, and leftover template placeholders.
  • scripts/test_skill.py runs structural checks, unit tests, and a live smoke probe when GEMINI_API_KEY is present.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.36%
按下载量换算22

Claude

30.25%
按下载量换算19

Cursor

20.57%
按下载量换算13

Gemini CLI

9.77%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills