--- id: oxbshw/watch-skill/asking-with-evidence version: "f0ec84b8" license: MIT install: manual updated: 2026-07-12 --- # asking-with-evidence — Query any video you've already watched to get answers backed by timestamps and confidence scores, drawn from a persistent index rather than re-processing. The skill refuses unclear answers honestly and escalates automatically when uncertain, saving tokens in the process. Publisher: oxbshw · Stars: 236 · Updated: 2026-07-12 Install (manual): `git clone https://github.com/oxbshw/watch-skill` ## SKILL.md # Asking with evidence Every watched video sits in a persistent index. Questions about it are answered from that index — text first, frames only when needed — with timestamps, a confidence score, and an honest refusal when the video does not show the answer. Never re-run a watch for a follow-up. ## Answer a question ```bash watch-skill ask "" ``` Any language works; the answer comes back in the language of the question. The engine escalates on its own when unsure (dense re-sampling, zoom-crop re-OCR, stronger model) and prints a `~N tokens saved` line. Three rules for reading the result: - **Cite the timestamps** it gives you; they are real evidence, not decoration. - **Trust the refusal.** When it says the video does not clearly show the answer, that is the answer. Do not invent one past it. - Frame paths are listed only when the engine wants you to look yourself — Read them then (or force with `--frames`). ## "What happens at 2:30?" Moment questions get a dense window, not a whole-video ask: ```bash watch-skill moment 2:30 [--window 10] ``` Returns frames + transcript + OCR around that timestamp. ## Don't know which video? Search them all ```bash watch-skill search "" ``` Hybrid keyword + semantic search across every video ever watched, with per-script normalization (Arabic folding, CJK segmentation, Thai segmentation). Follow a hit with `ask` or `moment` on that video. ## When the user corrects you Report it so the next answer is better — see the `learning-from-mistakes` skill. [View on SkillFed](https://skillfed.io/oxbshw/watch-skill/asking-with-evidence) · [View on GitHub](https://github.com/oxbshw/watch-skill)