πŸ“š Kamal's Readwise Wiki
Concept

AI Tools for Knowledge Work and Prompting

A field guide to getting real leverage from LLMs beyond code β€” prompt craft, deep research, NotebookLM, MCP servers, and generative image/video recipes.

aipromptingllmstoolsgenerative-ai

The most useful thing about large language models is not that they write code β€” it is that they turn plain English into a general-purpose command line for research, analysis, and media. Andrej Karpathy's framing is that neural nets "have become programmable with large language models" and that this is a genuinely new kind of computer.1 The user's own note on that talk lands it cleanly: we have moved "from writing strict recipes to letting machines learn from the examples to just talking to a helper that invents all steps by itself," and so "the hottest new programming language is English."1 This page collects the highlights that treat that new language as a craft: how to prompt, how to point models at your own documents and tools, and how to coax images and video out of them.

English as the interface β€” and why prompting is a skill

If English is the programming language, then prompting is the syntax, and the highlights repeatedly show that the syntax matters enormously. McKay Wrigley's demo compares a default prompt to a specialized one and calls the difference "night and day" β€” the same model, drastically better output, purely from how you ask.2 The pattern that keeps recurring is assign a role and a standard. Aditya Jha's learning trick is not "explain like I'm 5" but the opposite: "You're the senior dev. I'm the intern. Teach me how to build it like you'd expect it in production. Show me the real flow, gotchas, decisions, and best practices."3 God of Prompt's "Game Theory Strategist" does the same by casting the model as "a former Pentagon strategic analyst" before handing it a problem.4 Roles work because they compress a whole distribution of tone, depth, and vocabulary into one line.

Prompting is also recursive: the best way to write a prompt is often to ask the model to write it. Nghia Tran's early highlight β€” asking ChatGPT for "a better prompt for MidJourney to generate an iOS app icon with a bird" β€” is the whole meta-move in miniature.5 The deep-research playbook below extends it into an assembly line of prompts building prompts.

Anthropic's Opus 4.5 guide: prompting as tuning

The single most authoritative reference the user saved is Anthropic's own prompting guide for Claude Opus 4.5, "based on extensive internal testing."6 It reads as a set of dials rather than magic words:

Dial What it does The fix
effort parameter Controls roughly how many tokens Claude uses across thinking, responses, and tool calls "Trade off intelligence for cost/latency with a single dial"
Tool-trigger language Newer models are more responsive to system prompts, so old aggressive prompts over-trigger Dial back "CRITICAL: You MUST use this tool" to just "Use this tool when…"
Over-engineering Model adds extra files and abstractions Add "Only make changes that are directly requested. Keep solutions simple and focused."
Code exploration Model proposes edits without reading first "ALWAYS read and understand relevant files before proposing edits. Do not speculate about code you have not inspected."
Dense images Vision struggles with detail Give it a cropping tool to "zoom" in on regions

The through-line is that prompting a frontier model is less about tricking it and more about removing the aggressive scaffolding earlier, weaker models needed β€” a maturation the user clearly noticed by flagging the whole thread.

The context principle: show the model everything

antirez's essay on coding with LLMs states the governing law of getting good output, and it generalizes far beyond code. His claim is that "the maximum quality of work is reached using the human+LLM equation" β€” not vibe coding, not full autonomy, but partnership.7 Two of his rules are really about context management: "Provide large context" and "Always show things to the most able model, the frontier LLM itself. Avoid any RAG that will show only part of the code / context to the LLM. This destroys LLMs performance."7 The insight the user highlighted is that hiding context to save tokens is usually a false economy; you want to be in deliberate control of exactly what the model can see.

Deep research: turning filings into theses

The clearest demonstration of leverage-beyond-code in the collection is @buccocapital's DoorDash walkthrough, where he uploads a company's S-1 and five years of 10-Ks and asks ChatGPT Deep Research to write an investment thesis.8 The method is a three-stage prompt cascade worth internalizing:

flowchart LR
    A["Ask the model to<br/>research best-practice<br/>deep-research prompting"] --> B["Turn that into a<br/>reusable prompt<br/>template"]
    B --> C["Ask the model, as an<br/>investment analyst, for its<br/>own analysis playbook"]
    C --> D["Merge template + playbook<br/>+ uploaded filings into one<br/>Deep Research prompt"]
    D --> E["3–5 page prompt β†’<br/>60–100 page<br/>cited report"]

He notes the template "routinely creates 3-5 page prompts that are generating 60-100 page, very thorough reports."8 The template itself is a checklist of prompt-engineering fundamentals β€” define the objective, gather context and boundaries, use specific language, give step-by-step guidance, specify output format, apply chain-of-thought ("think step by step"), set a role, request justification and references.8 Aditya Kondawar reports the same collapse in effort from the investing side: work that "used to spend 4-6 hours reading DRHPs during IPOs" now gets "80-90% of the job done" with a single Gemini 2.5 Pro prompt that starts by asking the model to "explain the business model to me like a 5-year-old."9

NotebookLM as a personal research studio

Where deep research reaches out to the web, NotebookLM turns your sources into interactive artifacts. Allie K. Miller's recap captures the shape of it: upload up to 50 sources β€” "notes, docs, videos, links, or pasted text" β€” and generate "summaries, study guides, FAQs, podcasts, or a Q&A bot in just a few minutes," free.10 Her use-case matrix spans students turning a semester of notes into a podcast, marketers turning "a 37-page lead magnet into a fun podcast," and researchers distilling a stack of academic papers into an FAQ.10 Simon pushes it further by combining NotebookLM Slide Decks with Deep Research to "create personal illustrated guides to anything" β€” his example is figuring out how to get his son started fishing in the Bay Area.11 The pattern is grounding: the model reasons over a corpus you chose, not the whole internet.

MCP servers: giving the model your live data and tools

The Model Context Protocol is what lets an LLM stop guessing and start querying real systems. In the Cursor + Supabase workflow, MCP lets the editor "query Supabase directly to retrieve database schema in real-time, modify tables dynamically, and automate schema updates" β€” so "Cursor understands your backend natively without requiring extra input," configured with a small .cursor/mcp.json file.12 The same primitive powers knowledge work outside coding. hrishikesh tried Zerodha's MCP server and got a "one-shot analysis of my entire portfolio vs nifty50 index for the past 4 years," concluding he could "literally build my own personal finance manager with few prompts."13 Chris Long finds the Google Analytics MCP "INCREDIBLY powerful for SEOs" β€” letting AI "gather analytics data, find top performing content, analyze your content strategy."14 MCP is the bridge that makes the "talk to a helper" model actually reach your accounts, databases, and dashboards.

Ingestion: getting the world into LLM-ready text

Before a model can help, the source has to be readable to it. Several highlights are really about this plumbing. Charly Wargnier flags Scrapeghost, a GPT-4 library that can "scrape structured data from HTML without writing page-specific code."15 Matt Pocock's open question β€” the "Best CLI for crawling a URL and turning it into LLM-ready text" β€” is the same need stated as a gap.16 Dan Shipper's early "how to turn any book into a chatbot using GPT-3" is the origin species of this whole genre: point a model at a corpus and query it conversationally.17 Karpathy's own note anticipates the endgame β€” that "going forward, things have to be accessible for LLMs," with docs turned into LLM-readable formats, because today's GUIs are all built for humans.1

Generative recipes: images and video by prompt

The most recipe-like highlights are the generative-media ones, where a single reusable prompt reliably produces a look:

  • Product ad grids β€” Amira Zairi's "one prompt to create an amazing Ad campaign": a "3Γ—3 grid in 3:4 aspect ratio for a high-end commercial marketing campaign using the uploaded product as the central subject."18
  • Figurines from selfies β€” Regy's Nano Banana Pro recipe: "Make a miniature, full-body, isometric, realistic figurine of this person, wearing ABC, doing XYZ, on a white background, minimal, 4K resolution."19
  • Consistent restyling β€” Ege's JSON + Midjourney --sref setup to "retexture any image with the same style" of a shared style reference.20
  • Cinematic video β€” PJ Ace re-edited the Fellowship trailer "as if Studio Ghibli directed it," spending "$250 in Kling credits and 9 hours."21
  • Interactive 3D with zero code β€” el.cine generated a gesture-controlled "3D product interactive app" with Google Gemini 3 + three.js and "zero coding."22

The common structure is a template with slots: fix the style, format, and constraints; leave the subject variable. That is prompt engineering applied to pixels.

Applied leverage: from idea generation to hustle

The final cluster treats the LLM as an agent of applied action. Greg Isenberg's riff on Sam Altman's "era of the idea guy" is a 19-item playbook for mining ideas with AI β€” including "scroll your own chatgpt history… if you're repeating the same prompt weekly, that's a product hiding in plain sight," and searching Reddit for "is there a tool that" to find "users begging for tools that don't exist."23 Gautam Shewakramani calls trip-planning "the real killer use case for ChatGPT in travel."24 And Jackson Fall's viral experiment β€” giving "GPT-4 a budget of $100" and "acting as its human liaison" β€” is the earliest, rawest test of the model as a delegated operator.25 The unifying claim, from Jack Raines, is why any of this matters: "When knowledge (or the ability to quickly acquire it) is table stakes, the only things that really matter are curiosity, creativity, and agency."26 The tools commoditize the knowing; the leverage comes from what you point them at.


  1. Andrej Karpathy Software Is Changing.md 

  2. Tweets From McKay Wrigley.md 

  3. Tweets From Aditya Jha.md 

  4. Tweets From God of Prompt.md 

  5. Tweets From Nghia Tran.md 

  6. We Put Together a Prompt....md 

  7. Coding with LLMs in the summer of 2025 (an update).md 

  8. (110) People Were Curio....md 

  9. Tweets From Aditya Kondawar.md 

  10. Tweets From Allie K. Miller.md 

  11. Tweets From Simon.md 

  12. Cursor + Supabase + McP....md 

  13. Tweets From hrishikesh.eth.md 

  14. Tweets From Chris Long.md 

  15. Tweets From Charly Wargnier.md 

  16. Tweets From Matt Pocock ✈️ Remix Conf.md 

  17. Tweets From Dan Shipper.md 

  18. Tweets From Amira Zairi.md 

  19. Tweets From Regy.md 

  20. Tweets From Ege.md 

  21. Tweets From PJ Ace.md 

  22. Tweets From el.cine.md 

  23. Tweets From 🌴 Greg Isenberg.md 

  24. Tweets From Gautam Shewakramani.md 

  25. Tweets From Jackson Greathouse Fall ).md 

  26. What Happens When Knowledge Is Commoditized.md