transcript-fixer: - Add common_words.py safety system (blocks common Chinese words from dictionary) - Add --audit command to scan existing dictionary for risky rules - Add --force flag to override safety checks explicitly - Fix substring corruption (产线数据→产线束据, 现金流→现现金流) - Unified position-aware replacement with _already_corrected() check - 69 tests covering all production false positive scenarios tunnel-doctor: - Add Step 5A: Tailscale SSH proxy silent failure on WSL - Add Step 5B: App Store vs Standalone Tailscale on macOS - Add Go net/http NO_PROXY CIDR incompatibility warning - Add utun interface identification (MTU 1280=Tailscale, 4064=Shadowrocket) - Fix "Four→Five Conflict Layers" inconsistency in reference doc - Add complete working Shadowrocket config reference Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
241 lines
9.4 KiB
Markdown
241 lines
9.4 KiB
Markdown
---
|
|
name: transcript-fixer
|
|
description: Corrects speech-to-text transcription errors in meeting notes, lectures, and interviews using dictionary rules and AI. Learns patterns to build personalized correction databases. Use when working with transcripts containing ASR/STT errors, homophones, or Chinese/English mixed content requiring cleanup.
|
|
---
|
|
|
|
# Transcript Fixer
|
|
|
|
Correct speech-to-text transcription errors through dictionary-based rules, AI-powered corrections, and automatic pattern detection. Build a personalized knowledge base that learns from each correction.
|
|
|
|
## When to Use This Skill
|
|
|
|
- Correcting ASR/STT errors in meeting notes, lectures, or interviews
|
|
- Building domain-specific correction dictionaries
|
|
- Fixing Chinese/English homophone errors or technical terminology
|
|
- Collaborating on shared correction knowledge bases
|
|
|
|
## Prerequisites
|
|
|
|
**Python execution must use `uv`** - never use system Python directly.
|
|
|
|
If `uv` is not installed:
|
|
```bash
|
|
# macOS/Linux
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
|
|
# Windows PowerShell
|
|
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
```
|
|
|
|
## Quick Start
|
|
|
|
**Recommended: Use Enhanced Wrapper** (auto-detects API key, opens HTML diff):
|
|
|
|
```bash
|
|
# First time: Initialize database
|
|
uv run scripts/fix_transcription.py --init
|
|
|
|
# Process transcript with enhanced UX
|
|
uv run scripts/fix_transcript_enhanced.py input.md --output ./corrected
|
|
```
|
|
|
|
The enhanced wrapper automatically:
|
|
- Detects GLM API key from shell configs (checks lines near `ANTHROPIC_BASE_URL`)
|
|
- Moves output files to specified directory
|
|
- Opens HTML visual diff in browser for immediate feedback
|
|
|
|
**Timestamp repair**:
|
|
```bash
|
|
uv run scripts/fix_transcript_timestamps.py meeting.txt --in-place
|
|
```
|
|
|
|
**Split transcript into sections and rebase each section to `00:00:00`**:
|
|
```bash
|
|
uv run scripts/split_transcript_sections.py meeting.txt \
|
|
--first-section-name "课前聊天" \
|
|
--section "正式上课::好,无缝切换嘛。对。那个曹总连上了吗?那个网页。" \
|
|
--section "课后复盘::我们复盘一下。" \
|
|
--rebase-to-zero
|
|
```
|
|
|
|
**Alternative: Use Core Script Directly**:
|
|
|
|
```bash
|
|
# 1. Set API key (if not auto-detected)
|
|
export GLM_API_KEY="<api-key>" # From https://open.bigmodel.cn/
|
|
|
|
# 2. Add common corrections (5-10 terms)
|
|
uv run scripts/fix_transcription.py --add "错误词" "正确词" --domain general
|
|
|
|
# 3. Run full correction pipeline
|
|
uv run scripts/fix_transcription.py --input meeting.md --stage 3
|
|
|
|
# 4. Review learned patterns after 3-5 runs
|
|
uv run scripts/fix_transcription.py --review-learned
|
|
```
|
|
|
|
**Output files**:
|
|
- `*_stage1.md` - Dictionary corrections applied
|
|
- `*_stage2.md` - AI corrections applied (final version)
|
|
- `*_对比.html` - Visual diff (open in browser for best experience)
|
|
|
|
**Generate word-level diff** (recommended for reviewing corrections):
|
|
```bash
|
|
uv run scripts/generate_word_diff.py original.md corrected.md output.html
|
|
```
|
|
|
|
This creates an HTML file showing word-by-word differences with clear highlighting:
|
|
- 🔴 `japanese 3 pro` → 🟢 `Gemini 3 Pro` (complete word replacements)
|
|
- Easy to spot exactly what changed without character-level noise
|
|
|
|
## Example Session
|
|
|
|
**Input transcript** (`meeting.md`):
|
|
```
|
|
今天我们讨论了巨升智能的最新进展。
|
|
股价系统需要优化,目前性能不够好。
|
|
```
|
|
|
|
**After Stage 1** (`meeting_stage1.md`):
|
|
```
|
|
今天我们讨论了具身智能的最新进展。 ← "巨升"→"具身" corrected
|
|
股价系统需要优化,目前性能不够好。 ← Unchanged (not in dictionary)
|
|
```
|
|
|
|
**After Stage 2** (`meeting_stage2.md`):
|
|
```
|
|
今天我们讨论了具身智能的最新进展。
|
|
框架系统需要优化,目前性能不够好。 ← "股价"→"框架" corrected by AI
|
|
```
|
|
|
|
**Learned pattern detected:**
|
|
```
|
|
✓ Detected: "股价" → "框架" (confidence: 85%, count: 1)
|
|
Run --review-learned after 2 more occurrences to approve
|
|
```
|
|
|
|
## Core Workflow
|
|
|
|
Three-stage pipeline stores corrections in `~/.transcript-fixer/corrections.db`:
|
|
|
|
1. **Initialize** (first time): `uv run scripts/fix_transcription.py --init`
|
|
2. **Add domain corrections**: `--add "错误词" "正确词" --domain <domain>`
|
|
3. **Process transcript**: `--input file.md --stage 3`
|
|
4. **Review learned patterns**: `--review-learned` and `--approve` high-confidence suggestions
|
|
|
|
**Stages**: Dictionary (instant, free) → AI via GLM API (parallel) → Full pipeline
|
|
**Domains**: `general`, `embodied_ai`, `finance`, `medical`, or custom names including Chinese (e.g., `火星加速器`, `具身智能`)
|
|
**Learning**: Patterns appearing ≥3 times at ≥80% confidence move from AI to dictionary
|
|
|
|
See `references/workflow_guide.md` for detailed workflows, `references/script_parameters.md` for complete CLI reference, and `references/team_collaboration.md` for collaboration patterns.
|
|
|
|
## Critical Workflow: Dictionary Iteration
|
|
|
|
**Save stable, reusable ASR patterns after each fix.** This is the skill's core value.
|
|
|
|
After fixing errors manually, immediately save stable corrections to dictionary:
|
|
```bash
|
|
uv run scripts/fix_transcription.py --add "错误词" "正确词" --domain general
|
|
```
|
|
|
|
Do **not** save one-off deletions, ambiguous context-only rewrites, or section-specific cleanup to the dictionary.
|
|
|
|
See `references/iteration_workflow.md` for complete iteration guide with checklist.
|
|
|
|
## FALSE POSITIVE RISKS -- READ BEFORE ADDING CORRECTIONS
|
|
|
|
Dictionary-based corrections are powerful but dangerous. Adding the wrong rule silently corrupts every future transcript. The `--add` command runs safety checks automatically, but you must understand the risks.
|
|
|
|
### What is safe to add
|
|
|
|
- **ASR-specific gibberish**: "巨升智能" -> "具身智能" (no real word sounds like "巨升智能")
|
|
- **Long compound errors**: "语音是别" -> "语音识别" (4+ chars, unlikely to collide)
|
|
- **English transliteration errors**: "japanese 3 pro" -> "Gemini 3 Pro"
|
|
|
|
### What is NEVER safe to add
|
|
|
|
- **Common Chinese words**: "仿佛", "正面", "犹豫", "传说", "增加", "教育" -- these appear correctly in normal text. Replacing them corrupts transcripts from better ASR models.
|
|
- **Words <=2 characters**: Almost any 2-char Chinese string is a valid word or part of one. "线数" inside "产线数据" becomes "产线束据".
|
|
- **Both sides are real words**: "仿佛->反复", "犹豫->抑郁" -- both forms are valid Chinese. The "error" is only an error for one specific ASR model.
|
|
|
|
### When in doubt, use a context rule instead
|
|
|
|
Context rules use regex patterns that match only in specific surroundings, avoiding false positives:
|
|
```bash
|
|
# Instead of: --add "线数" "线束"
|
|
# Use a context rule in the database:
|
|
sqlite3 ~/.transcript-fixer/corrections.db "INSERT INTO context_rules (pattern, replacement, description, priority) VALUES ('(?<!产)线数(?!据)', '线束', 'ASR: 线数->线束 (not inside 产线数据)', 10);"
|
|
```
|
|
|
|
### Auditing the dictionary
|
|
|
|
Run `--audit` periodically to scan all rules for false positive risks:
|
|
```bash
|
|
uv run scripts/fix_transcription.py --audit
|
|
uv run scripts/fix_transcription.py --audit --domain manufacturing
|
|
```
|
|
|
|
### Forcing a risky addition
|
|
|
|
If you understand the risks and still want to add a flagged rule:
|
|
```bash
|
|
uv run scripts/fix_transcription.py --add "仿佛" "反复" --domain general --force
|
|
```
|
|
|
|
## AI Fallback Strategy
|
|
|
|
When GLM API is unavailable (503, network issues), the script outputs `[CLAUDE_FALLBACK]` marker.
|
|
|
|
Claude Code should then:
|
|
1. Analyze the text directly for ASR errors
|
|
2. Fix using Edit tool
|
|
3. **MUST save corrections to dictionary** with `--add`
|
|
|
|
## Database Operations
|
|
|
|
**MUST read `references/database_schema.md` before any database operations.**
|
|
|
|
Quick reference:
|
|
```bash
|
|
# View all corrections
|
|
sqlite3 ~/.transcript-fixer/corrections.db "SELECT * FROM active_corrections;"
|
|
|
|
# Check schema version
|
|
sqlite3 ~/.transcript-fixer/corrections.db "SELECT value FROM system_config WHERE key='schema_version';"
|
|
```
|
|
|
|
## Stages
|
|
|
|
| Stage | Description | Speed | Cost |
|
|
|-------|-------------|-------|------|
|
|
| 1 | Dictionary only | Instant | Free |
|
|
| 2 | AI only | ~10s | API calls |
|
|
| 3 | Full pipeline | ~10s | API calls |
|
|
|
|
## Bundled Resources
|
|
|
|
**Scripts:**
|
|
- `ensure_deps.py` - Initialize shared virtual environment (run once, optional)
|
|
- `fix_transcript_enhanced.py` - Enhanced wrapper (recommended for interactive use)
|
|
- `fix_transcription.py` - Core CLI (for automation)
|
|
- `fix_transcript_timestamps.py` - Normalize/repair speaker timestamps and optionally rebase to zero
|
|
- `generate_word_diff.py` - Generate word-level diff HTML for reviewing corrections
|
|
- `split_transcript_sections.py` - Split a transcript by marker phrases and optionally rebase each section
|
|
- `examples/bulk_import.py` - Bulk import example
|
|
|
|
**References** (load as needed):
|
|
- **Critical**: `database_schema.md` (read before DB operations), `iteration_workflow.md` (dictionary iteration best practices)
|
|
- Getting started: `installation_setup.md`, `glm_api_setup.md`, `workflow_guide.md`
|
|
- Daily use: `quick_reference.md`, `script_parameters.md`, `dictionary_guide.md`
|
|
- Advanced: `sql_queries.md`, `file_formats.md`, `architecture.md`, `best_practices.md`
|
|
- Operations: `troubleshooting.md`, `team_collaboration.md`
|
|
|
|
## Troubleshooting
|
|
|
|
Verify setup health with `uv run scripts/fix_transcription.py --validate`. Common issues:
|
|
- Missing database → Run `--init`
|
|
- Missing API key → `export GLM_API_KEY="<key>"` (obtain from https://open.bigmodel.cn/)
|
|
- Permission errors → Check `~/.transcript-fixer/` ownership
|
|
|
|
See `references/troubleshooting.md` for detailed error resolution and `references/glm_api_setup.md` for API configuration.
|