MCP HubMCP Hub
スキル一覧に戻る

VoiceServer

majiayu000
更新日 Yesterday
21 閲覧
58
9
58
GitHubで表示
開発general

について

VoiceServerスキルは、通知やプロソディ調整を含む音声およびTTSサーバー操作を管理します。音声サーバー、TTSサーバー、または音声通知システムを操作する際にご利用ください。カスタム設定をサポートし、アクションを実行する前に音声通知を送信する必要があります。

クイックインストール

Claude Code

推奨
プラグインコマンド推奨
/plugin add https://github.com/majiayu000/claude-skill-registry
Git クローン代替
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/VoiceServer

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

ドキュメント

Customization

Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/VoiceServer/

If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.

🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION)

You MUST send this notification BEFORE doing anything else when this skill is invoked.

  1. Send voice notification:

    curl -s -X POST http://localhost:8888/notify \
      -H "Content-Type: application/json" \
      -d '{"message": "Running the WORKFLOWNAME workflow in the VoiceServer skill to ACTION"}' \
      > /dev/null 2>&1 &
    
  2. Output text notification:

    Running the **WorkflowName** workflow in the **VoiceServer** skill to ACTION...
    

This is not optional. Execute this curl command immediately upon skill invocation.

VoiceServer Skill

Domain: Voice notification system using ElevenLabs TTS with prosody guidance.

Algorithm: ~/.claude/skills/CORE/SYSTEM/THEALGORITHM.md


Phase Overrides

OBSERVE

  • Key sources: Operation type (status/notify/manage), message content, voice selection
  • Critical: Voice relies on 🎯 COMPLETED: line - without it, user won't hear response

THINK

  • Voice selection: Match agent to voice ID (see routing table below)
  • Prosody: Emotional markers + markdown emphasis = natural speech
  • Anti-patterns: Missing COMPLETED line, no prosody, wrong voice for agent

BUILD

CriterionPASSFAIL
COMPLETEDLine present with messageMissing line
ProsodyEmotional markers appliedFlat/robotic
VoiceCorrect agent voiceWrong voice

EXECUTE

  • Notify: curl -X POST http://localhost:8888/notify -H "Content-Type: application/json" -d '{"message":"...", "voice_id":"..."}'
  • Manage: ~/.claude/VoiceServer/{start,stop,status,restart}.sh
  • Workflow: Workflows/Status.md

Domain Knowledge

Voice Routing:

AgentVoice IDStyle
kai${KAI_VOICE_ID}Configure your primary voice
engineer${ENGINEER_VOICE_ID}Configure engineering voice
pentester${PENTESTER_VOICE_ID}Configure pentester voice
architect${ARCHITECT_VOICE_ID}Configure architect voice

Configure voice IDs in your environment or ~/.claude/VoiceServer/voices.json

Prosody Quick Reference:

  • Emotional: [💥 excited] [✨ success] [⚠️ caution] [🚨 urgent]
  • Emphasis: **bold** for key words, ... for pause, -- for break

Infrastructure: Server at ~/.claude/VoiceServer/, Port 8888, Config voices.json

GitHub リポジトリ

majiayu000/claude-skill-registry
パス: skills/data/VoiceServer

関連スキル

algorithmic-art

メタ

This Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.

スキルを見る

subagent-driven-development

開発

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

スキルを見る

executing-plans

デザイン

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

スキルを見る

cost-optimization

その他

This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.

スキルを見る