@omarsar0: YT if you prefer https://youtu.be/_rIziQa48wQ?si=IsCBPvm07TDUIeu7…
Summary
By packaging modalities such as voice, screenshots, mouse trajectories, and text descriptions into a single request, the AI Agent can more efficiently understand and fix web design issues, significantly reducing manual iterations.
View Cached Full Text
Cached at: 07/04/26, 12:44 AM
YT if you prefer https://youtu.be/_rIziQa48wQ?si=IsCBPvm07TDUIeu7…
TL;DR
By injecting rich context into an AI agent via multimodal prompts (voice + screenshots + annotations + text), you can dramatically improve the speed and quality of solving complex tasks like web design fixes.
Why Multimodal Prompting?
Traditionally, when we want an AI agent to modify a web design, we have to manually take screenshots, draw arrows, switch apps to copy-paste text, and then describe each problem one by one. This process is fragmented, time-consuming, and prone to losing context. The speaker experimented with a much smoother approach in his own agent orchestrator: multimodal prompting — bundling voice, screenshots, real-time annotations, mouse trails, and text descriptions into a single request and throwing it at the agent all at once.
He notes: “As models improve, they’ll get better and better at understanding these rich prompts. What I’m doing is pushing the way we interact with agents.”
Demo Scenario: Fixing Web Design Flaws
The speaker is working on an open-source project (inspired by Anthropic’s Cloud Science), but the page has several typical issues:
- The artifacts list cannot scroll
- The sidebar and content panel alignment is messed up
- A section contains extra formatting that needs to be removed
He uses his own Chromium-based browser (for the orchestrator) to record his actions instead of manually taking screenshots.
Pain Points of the Traditional Approach
- Multiple screenshot annotations: Taking screenshots, drawing circles, writing text descriptions manually each time.
- Constant context switching: Jumping between browser, drawing tools, and agent chat interface.
- Loss of information: Pure text descriptions cannot precisely convey visual alignment or scroll behavior.
How Multimodal Prompting Works
While the orchestrator runs a “recording task,” it simultaneously collects the following information:
- Voice: Transcribed in real-time via Eleven Labs, naturally expressing intent.
- Screen annotations: During recording, the speaker circles problem areas with the mouse; annotations are saved as part of the image.
- Mouse events: The system listens to mouse position and tracks cursor movement, accurately indicating “this is misaligned.”
- Screenshots: Automatically captures the entire page including annotations.
All these modalities are merged into a “rich prompt” and sent directly to the agent (defaulting to Claude 4.8). Although it consumes more tokens, the agent instantly understands the problem.
“Some problems are really hard to explain to an agent with just a text prompt. Multimodal prompts make collaborating with the agent super fun.”
Result: More Efficient One-Shot Fix
A few minutes later, the agent completed the modifications without any additional interaction:
- Scrolling works normally, artifacts list is navigable.
- Alignment is noticeably improved — the speaker exclaims, “I really like this alignment.”
- The extra tags have been completely removed.
The entire process required no manual prompt adjustments, no back-and-forth. The speaker emphasizes: “It’s not always perfect, but it lets me give Claude enough context to fix problems much more efficiently.”
Why Is This Better Than the Traditional Way?
Traditionally, to fix the same set of issues, you might have to:
- Take a full-page screenshot
- Draw arrows and circles in a drawing tool
- Write “artifacts list can’t scroll, sidebar is misaligned, delete this text section”
- Copy-paste into the agent chat
- Wait for the agent to make changes, then iterate
With multimodal prompting, steps 1–4 are compressed into a single recording+annotation action, and the agent directly receives your full intent expressed through language, gestures, and notes.
Key advantage: fewer context switches, preserved natural interaction — especially helpful for visual alignment, layout tweaks, and other problems that are tricky for AI.
Future Outlook
The speaker believes multimodal prompting will become the trend. As models get better at understanding images, audio, and mouse trails, this interaction style will further lower the communication cost between human and agent. He plans to continue improving the orchestrator and explore more modality combinations (e.g., video, real-time cursor animation).
“It’s great — basically filling in the blanks, helping the agent fill in the blanks, and also helping yourself. There’s a kind of relationship formed in the interaction.”
Source
[Original Video] @omarsar0: YT if you prefer https://youtu.be/_rIziQa48wQ?si=IsCBPvm07TDUIeu7 (https://www.youtube.com/watch?v=_rIziQa48wQ)
Similar Articles
@axichuhai: This Alibaba open-source project, Page-Agent, allows you to control web interfaces using natural language. It has already garnered 18.7K stars on GitHub. It injects an AI agent directly into web pages, and you can use natural language to instruct it to click buttons, fill out forms, and navigate workflows. It doesn't need a headless browser, screenshots, OCR, or multimodal models.
Alibaba's open-source project, Page-Agent, lets you directly control web interfaces with natural language, with no need for headless browsers or multimodal models. It has earned 18.7K stars on GitHub.
@jinchenma_ai: https://x.com/jinchenma_ai/status/2061835131107860582
The article proposes an engineering methodology based on AI Agent (Skill), suggesting that deterministic tasks be solidified into scripts to reduce new decisions made by the large model at runtime, thereby improving stability and token efficiency. Taking video subtitle processing as an example, it demonstrates a four-step engineering process.
@xiangxiang103: Just discovered an amazing site! https://motionsites.ai It's full of high-end AI website prompts. Copy-paste to your AI and instantly get stunning animated landing pages, SaaS, portfolios... Make in minutes what used to take days. Too good!
Discovered a wonderful site motionsites.ai offering high-end AI website prompts. Copy-paste to quickly generate animated landing pages, SaaS, and portfolios, greatly improving efficiency.
@GYLQ520: Attention AI Agent developers! Token costs burning a hole in your pocket? There's an open-source tool called curl.md that converts web pages to Markdown format for AI, slashing token consumption significantly. Choose from CLI, browser extension, or API usage. Cursor, Claud…
curl.md is an open-source tool that converts web pages to optimized Markdown format for AI agents, significantly reducing token consumption and cost. It offers CLI, browser extension, and API usage, with integrations for Cursor, Claude, and other agents.
@LTChives: Web scraping is dead. This PixelRAG in the video completely bypasses HTML parsing. It takes a screenshot of the webpage and then lets the vision model read answers from the pixels. Previously, AI reading a webpage meant first parsing the code, extracting text, and splitting paragraphs. Now it just looks at the page. 100% open source, plus it comes with Claude Code…
PixelRAG is a novel open-source tool that bypasses traditional HTML parsing by directly taking screenshots of webpages and using vision models to extract answers from the pixels. It also supports the Claude Code plugin, giving Claude visual capabilities.