Five free tools that make Claude Code far more capable
If you build with Claude Code — as I do for client sites — it has five known soft spots. Each has a free open-source tool that closes it:
- Video → Claude Video. Claude can't watch video out of the box. This skill feeds it the transcript and intelligently grabs frames, with a free Whisper fallback when a video has no captions. Four modes trade cost for detail (transcript → efficient → balanced → token-burner). This very tutorial was written by having Claude watch a YouTube video with exactly this tool.
- Research → NotebookLM-PI. Puts Google's NotebookLM inside Claude Code as a CLI — a middle ground between shallow web search and burning millions of tokens on deep research. Offloads synthesis to Google's servers for free (great for digesting piles of YouTube URLs on one topic).
- Memory → Graphify (plus the Obsidian skills repo from Obsidian's own team). Turns a large codebase or document set into a knowledge graph Claude can traverse — lighter than a full RAG stack, no vector database, most of the benefit.
- Front-end design → Impeccable. 23 commands (craft, colorize, critique…) plus a live mode that opens your page in the browser, so you design visually instead of guessing through the terminal.
- Token cost → Ponytail. Adds "do you actually need to build this?" gates before coding; its benchmarks claim ~20% cheaper and ~27% faster with the same output. Worth a few test runs on your own workload.
None cost anything. The lesson for any AI stack: the base tool is rarely the whole toolbox — the community usually fills the gaps for free.