スキル一覧に戻る

c-voice

daxaur
更新日 Yesterday
2 閲覧
143
6
143
GitHubで表示
デザインvoicespeechttssttelevenlabssaysagaudio

について

c-voiceは、ElevenLabsのSTTを`sag`経由で利用して音声をテキストに変換し、macOS組み込みのTTSを`say`経由で利用して音声を合成することで、Claudeに音声入出力機能を提供します。Claudeを活用したアプリケーションに音声機能を追加するのに最適です。このスキルは、音声ファイルの文字起こし、マイク録音、カスタマイズ可能なテキスト読み上げ音声をサポートしています。

クイックインストール

Claude Code

推奨
メイン
npx skills add daxaur/openpaw -a claude-code
プラグインコマンド代替
/plugin add https://github.com/daxaur/openpaw
Git クローン代替
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-voice

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

What This Skill Does

Enables Claude to transcribe spoken audio to text via sag (powered by ElevenLabs) and to speak text aloud using the macOS say command.

Available CLI Tools

sag — Speech-to-Text (ElevenLabs)

# Transcribe an audio file
sag transcribe --file recording.mp3

# Record from microphone and transcribe
sag record --output transcript.txt

# Transcribe with a specific language hint
sag transcribe --file audio.wav --language en

# Output transcript to stdout
sag transcribe --file audio.m4a --stdout

say — Text-to-Speech (macOS built-in)

# Speak text aloud
say "Hello, how can I help you today?"

# Use a specific voice
say -v Samantha "Your report is ready."

# Save spoken audio to a file
say -o output.aiff "Text to synthesize"

# List available voices
say -v ?

# Control speaking rate (words per minute)
say -r 180 "Speaking at a custom rate"

Usage Guidelines

  • Use sag to process audio files the user provides or to capture mic input
  • Use say to read back responses, summaries, or alerts aloud
  • Prefer say -v Samantha or -v Alex for natural-sounding output on macOS

Notes

  • sag requires a valid ElevenLabs API key configured in environment
  • say is built into macOS — no installation needed
  • Supported audio input formats for sag: MP3, WAV, M4A, FLAC

GitHub リポジトリ

daxaur/openpaw
パス: skills/c-voice
0
ai-agentanthropicautomationclaudeclaude-codecli

関連スキル

executing-plans

デザイン

executing-plansスキルは、完全な実装計画があり、それを管理されたバッチでレビューチェックポイントを設けながら実行する場合に使用します。このスキルは計画を読み込んで批判的にレビューした後、小さなバッチ(デフォルトは3タスク)でタスクを実行し、各バッチの間に進捗状況を報告してアーキテクトのレビューを受けます。これにより、品質管理チェックポイントが組み込まれた体系的な実装が保証されます。

スキルを見る

requesting-code-review

デザイン

このスキルは、コードレビュアーサブエージェントを起動し、処理を進める前に要件に対してコード変更を分析します。タスク完了後、主要な機能の実装後、またはmainブランチへのマージ前などに使用すべきです。このレビューは、現在の実装と元の計画を比較することで、問題を早期に発見するのに役立ちます。

スキルを見る

connect-mcp-server

デザイン

このスキルは、開発者がHTTP、stdio、またはSSEトランスポートを使用してMCPサーバーをClaude Codeに接続するための包括的なガイドを提供します。GitHub、Notion、カスタムAPIなどの外部サービスを統合するためのインストール、設定、認証、セキュリティについて解説しています。MCP統合のセットアップ、外部ツールの設定、またはClaudeのModel Context Protocolを扱う際にご利用ください。

スキルを見る

web-cli-teleport

デザイン

このスキルは、タスク分析に基づいて開発者がClaude Code WebとCLIインターフェースの選択を支援し、これらの環境間でのシームレスなセッションテレポーテーションを可能にします。Web、CLI、モバイル環境を切り替える際のセッション状態とコンテキストを管理することで、ワークフローを最適化します。様々な段階で異なるツールを必要とする複雑なプロジェクトにご活用ください。

スキルを見る