document-to-narration
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Malicious tool definition detected
Tool: SKILL.md [2/2] Description: - `--output` - Directory for scene files (created if doesn't exist) - `--adapt` - Apply spoken adaptation rules - `--dry-run` - Preview scene breaks without writing files **Output:** Numbered `.txt` files and initial `manifest.json` ### scripts/narrate-full.py (Recommended) Generate a single TTS audio file from all scene files.
Malicious tool definition detected
Malicious tool definition detected
Tool: references/spoken-adaptation-guide.md Description: # Spoken Adaptation Guide ## Principle: Sound Natural When Read Aloud The test for spoken adaptation: read the text aloud.
Malicious tool definition detected
Tool: scripts/extract-scene-boundaries.py Description: #!/usr/bin/env python3 """ extract-scene-boundaries.py - Extract scene timing boundaries from transcript.
Malicious tool definition detected
Tool: scripts/full-pipeline.ts Description: #!/usr/bin/env -S deno run --allow-read --allow-write --allow-run --allow-env /** * full-pipeline.ts * * Orchestrate the complete document-to-narration pipeline: * 1.
Malicious tool definition detected
Tool: scripts/narrate-full.py Description: #!/usr/bin/env python3 """ narrate-full.py - Generate a single TTS audio file from all scene files.
Malicious tool definition detected
Tool: scripts/narrate-scenes.py Description: #!/usr/bin/env python3 """ narrate-scenes.py - Generate TTS audio for scene files.
Malicious tool definition detected
Tool: scripts/split-to-scenes.ts [1/2] Description: #!/usr/bin/env -S deno run --allow-read --allow-write /** * split-to-scenes.ts * * Parse a markdown document and analyze its structure for scene splitting.
Malicious tool definition detected
Malicious tool definition detected
Malicious tool definition detected
Malicious tool definition detected
Tool: tts/requirements.txt Description: # TTS dependencies for document-to-narration skill
Malicious tool definition detected
Tool: tts/setup-venv.sh Description: #!/bin/bash # Setup Python virtual environment for TTS set -e SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" cd "$SCRIPT_DIR" echo "Setting up Python virtual environment for TTS..." # Check Python version PYTHON_CMD="" if command -v python3.12 &> /dev/null; then PYTHON_CMD="python3.12" elif command -v python3 &> /dev/null; then PYTHON_CMD="python3" else echo "Error: Python 3 not found" exit 1 fi echo "Using Python: $($PYTHON_CMD --version)"