소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill voice-synthesis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
LLM token logprobs and calibration. Per-decision confidence, ECE, Brier, reliability diagrams, low-confidence triage.
Analyze LLM token logprobs and calibration. Use for per-decision confidence, ECE, Brier scores, reliability diagrams, and low-confidence triage.
回顾最近 N 天的 Claude Code 使用记录——扫描原始会话数据,按主题分组汇总"我都做了什么",并从个人操作系统视角输出模式、风险与增删建议。当用户说 /recap、"看看我这几天做了什么"、"回顾一下我最近的会话"、"这两天我用 claude 干了啥"、"活动回顾" 时使用。
| name | Voice Synthesis |
| tier | 3 |
| load_policy | task-specific |
| description | Generate voice audio using Google Cloud TTS with enhancement |
| version | 1.0.0 |
| parent_skill | production-operations |
The Voice Is the Heart of the Journey
This skill handles converting SSML scripts to voice audio with psychoacoustic enhancement.
Generate high-quality, hypnotic voice audio from SSML scripts using Google Cloud Text-to-Speech.
Always use: en-US-Neural2-H (bright female)
| Parameter | Value |
|---|---|
| Voice ID | en-US-Neural2-H |
| Speaking Rate | 0.88x (applied by TTS engine) |
| Pitch | 0 semitones (base) |
| Enhancement | Always enabled |
python3 scripts/core/generate_voice.py \
sessions/{session}/working_files/script_voice_clean.ssml \
sessions/{session}/output
This automatically:
en-US-Neural2-H)voice.mp3 and voice_enhanced.mp3| Voice ID | Character | Best For |
|---|---|---|
en-US-Neural2-H | Bright, clear | Production standard |
en-US-Neural2-E | Deep, resonant | Darker themes, shadow work |
en-US-Neural2-C | Soft, gentle | Very gentle sessions |
en-US-Neural2-F | Clear, articulate | Educational content |
en-US-Neural2-G | Warm, approachable | Confidence, empowerment |
| Voice ID | Character | Best For |
|---|---|---|
en-US-Neural2-D | Deep, authoritative | Guided pathworkings |
en-US-Neural2-I | Warm, compassionate | Healing journeys |
en-US-Neural2-J | Rich, mature | Wisdom, elder guidance |
Note: en-US-Neural2-A is MALE, not female.
| File | Purpose | Use For |
|---|---|---|
voice.mp3 | Raw TTS output | Never use directly |
voice_enhanced.mp3 | Production voice | Always use this |
voice_enhanced.wav | Lossless for mixing | Audio mixing input |
The generate_voice.py script applies these enhancements:
| Enhancement | Effect |
|---|---|
| Tape Warmth | Analog saturation (25% drive) |
| De-essing | Sibilance reduction (4-8 kHz) |
| Room Tone | Gentle reverb (4% wet) |
| EQ Shaping | Presence boost, rumble cut |
Large scripts are automatically chunked:
<break time="3s"/> or greater)After generation, verify duration matches target:
# Check duration
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 \
sessions/{session}/output/voice_enhanced.mp3
| Target Duration | Expected | Acceptable Range |
|---|---|---|
| 25 minutes | 25:00 | 23:00 - 27:00 |
| 30 minutes | 30:00 | 28:00 - 32:00 |
| 45 minutes | 45:00 | 42:00 - 48:00 |
If duration is off:
<break> durations in SSMLBefore running voice synthesis:
Environment:
source venv/bin/activate
Google Cloud Auth:
echo $GOOGLE_APPLICATION_CREDENTIALS
# Should show path to credentials JSON
SSML Validation:
python3 scripts/utilities/validate_ssml.py sessions/{session}/working_files/script_voice_clean.ssml
SFX Stripped:
grep -c "\[SFX:" sessions/{session}/working_files/script_voice_clean.ssml
# Should return 0
| Issue | Cause | Solution |
|---|---|---|
| "Authentication failed" | Missing credentials | Check GOOGLE_APPLICATION_CREDENTIALS |
| Robotic sound | Using slow rate in SSML | Use rate="1.0", breaks for pacing |
| TTS reads "[SFX:..." | SFX markers not stripped | Use script_voice_clean.ssml |
| Chunking errors | Break points too far apart | Add <break time="3s"/> every few paragraphs |
| Duration too short | Not enough content | Add more script content |
| Duration too long | Too much content | Trim or reduce break times |
Before (dependencies):
After (next steps):
Before proceeding to mixing:
voice_enhanced.mp3 existstier3-production/ssml-generation/ (input)tier3-production/audio-mixing/ (next step)audio_production_methodologyscripts/core/generate_voice.py