원클릭으로
hibiki-tts
Text-to-speech via OpenAI API with optional summarization and translation using the hibiki CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Text-to-speech via OpenAI API with optional summarization and translation using the hibiki CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | hibiki-tts |
| description | Text-to-speech via OpenAI API with optional summarization and translation using the hibiki CLI. |
Use the hibiki CLI to speak text aloud using OpenAI's text-to-speech API, with optional AI-powered summarization and translation.
Invoke this skill when the user:
hibiki --text "Hello, world!"
Speaks the provided text aloud using the configured voice.
hibiki --file-name README.md
Reads UTF-8 text from a file and speaks it aloud.
hibiki --text "Long article or document text here..." --summarize
hibiki --file-name notes.md --summarize
Summarizes the text using an LLM, then speaks the summary aloud. Useful for long content.
hibiki --text "Long article..." --summarize --prompt "Concise: 3 bullets, no fluff."
hibiki --text "Design doc..." --summarize --prompt "Thorough: goals, decisions, tradeoffs, risks, next steps."
Overrides the default summarization prompt (requires --summarize).
hibiki --text "Hello" --translate ja
hibiki --file-name draft.txt --translate fr
Translates the text to the specified language, then speaks it aloud.
hibiki --text "Long article text..." --summarize --translate fr
Summarizes the text, translates the summary, then speaks it aloud.
hibiki --help
| Code | Language |
|---|---|
en | English |
ja | Japanese |
de | German |
fr | French |
es | Spanish |
User asks: "Read this paragraph aloud"
hibiki --text "The paragraph content here"
User asks: "Summarize this article and read it to me"
hibiki --text "Full article content..." --summarize
User asks: "Give me a concise summary and read it"
hibiki --text "Full article content..." --summarize --prompt "Provide a concise summary: 2 bullets."
User asks: "Give me a thorough summary and read it"
hibiki --text "Full article content..." --summarize --prompt "Provide a thorough summary: key points, evidence, caveats, next steps."
User asks: "Translate this to Japanese and speak it"
hibiki --text "Hello, how are you?" --translate ja
User asks: "Summarize this and read it in German"
hibiki --text "Long content..." --summarize --translate de
User asks: "Read this file out loud"
hibiki --file-name docs/notes.txt
--text or --file-name--file-name expects UTF-8 text files--summarize to condense before speaking