SnapshotJuly 2026a point-in-time write-up, left as written

Deep research with Claude

Claude is good at research. Most people use it badly: single questions, single answers, no artifacts.

The right pattern: drive a research session like you would a junior analyst. Have it save everything to .md. Build a wiki that compounds.

Framing a research session

The quality of a research session is set in the first prompt. A good research prompt includes:

A loose prompt produces loose output. “Tell me about vector databases” returns generic marketing content. “Compare Turbopuffer, Pinecone, and Qdrant on pricing and cold-start latency for a startup indexing 10M documents, save findings to specs/research/vector-db-comparison.md” returns something you can act on.

Save findings as you go

The single biggest shift from “chatting with Claude” to “researching with Claude” is telling it to save things to files continuously. Not at the end but as it goes.

A useful framing: the session is ephemeral, the files are the artifact. Every non-trivial piece of research should produce at least one .md file. Complex research produces several.

In practice:

Structure each .md for re-reading

A research .md that’s hard to skim three months later is wasted effort. A useful structure:

Claude will produce this shape naturally if you describe it in the prompt.

Link the research into the broader knowledge base

Research artifacts are most valuable when they’re connected. A standalone vector-db-comparison.md in a random folder is nearly as lost as the conversation that produced it.

Connect them by:

See Connect everything for the broader pattern.

Remote is slow; local is instant

Research is the slowest part of most Claude Code sessions, because the web is slow. Every search, every page fetch, every JS-rendered page, every follow-up refinement is a remote round-trip. An agent fishing in the dark on the open web can spend ten minutes on what a local search does in a second.

The practical response: pull things local before you research them.

Web search is irreplaceable when you need current information. For everything else, local retrieval is faster, cheaper in context, and more reliable.

Compounding

The third time you research “how do we handle X” and find that past-you already wrote a doc about it, you’ve crossed into the compounding regime. That’s the goal.

Every research .md is an investment. Name them well. Cross-link them. Review them occasionally. Treat the research folder the way you’d treat a wiki.

Resources