← ClaudeAtlas

detect-fillerslisted

Scan an existing transcript JSON for fillers and output a cut list with start/end timestamps. Use to inspect what would be cut before actually trimming the media.
huodebing-alt/Agentic-Headshot-Video-Studio · ★ 0 · AI & Automation · score 71
Install: claude install-skill huodebing-alt/Agentic-Headshot-Video-Studio
# Detect Fillers / 检测口癖 ## When to use / 何时使用 Dry-run before `cut-fillers`. Lets the user review/edit the cut list. 剪切前 dry-run,便于用户审阅或调整剪切清单。 ## Inputs / 输入 - `workspace/rough/transcript.json`. - `config/fillers.yaml`: language-specific word lists (en: um, uh, like; zh: 那个, 这个, 然后). ## Output / 输出 - `workspace/rough/cuts.json`: `[{start_ms, end_ms, reason, word}]`. - `workspace/rough/cuts.preview.md` human-readable. ## Steps / 步骤 1. Walk words; flag exact matches + repeated bigrams. 2. Merge adjacent flags within 200 ms. 3. Filter out flags shorter than `--min-ms` (default 80). 4. Write JSON + preview. ## Examples / 示例 ``` claude run detect-fillers ``` ## Failure recovery / 失败回退 - If language not in `fillers.yaml`, use English defaults and warn. - If > 30% of words flagged, surface warning (likely tuning issue).