惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Against the Chat Box
dirk94018 · 2026-04-22 · via Hacker News - Newest: "AI"

Against the Chat Box | LinuxToaster

The chat box is not the medium. It is an accident of precedent.

Dirk Harms-Merbitz · April 2026 · linuxtoaster.com

Almost every AI product you can buy in 2026 is a chat box. The chat box is in the corner of your IDE. The chat box is the center of your coding assistant. The chat box is the search interface, the documentation reader, the customer support tool, the agent front-end. When a company decides to add AI to its product, the default move is to put a chat box in a pane.

This is a catastrophic design choice, and the industry has made it so uniformly that it no longer feels like a choice at all. It feels like the medium.

But the chat box is not the medium. The chat box is a UI pattern borrowed from consumer messaging apps and stapled onto tools that have nothing to do with messaging. It was chosen because OpenAI's first product was a chat box and everyone copied it. That is the entire reason. There was no study showing that chat is the right interface for code editing, or data analysis, or system administration, or document editing. There was a precedent, and the industry defaulted to the precedent.

What a chat box costs

The chat box costs you three things, and none of them are recoverable once the pattern is established.

First, it costs you composition. A chat box is a dead-end interface. Text goes in, text comes out, and the text that comes out lives in the chat box. To do anything with the output — save it, transform it, pipe it to another tool, feed it back as input — you have to copy it out by hand, or use some awkward sidebar feature the chat box grew to compensate for its own inadequacy. The terminal, by contrast, is composable by construction. Output is data. Data flows.

Second, it costs you history. Everything you do in a chat box lives inside the chat box. Your conversations are trapped in a product's database, in a product's format, behind a product's API — if it has one at all. You cannot grep six months of chats for the conversation where you figured out how to debug the auth bug. Or if you can, the search is a fuzzy text search over opaque conversation objects, not a real query over real data. Compare: a shell history file is just lines in a file, and history | grep auth works because of forty years of Unix convention.

Third, it costs you workflow. A chat box assumes a conversational rhythm — you ask, it answers, you ask again, it answers again. That is a fine rhythm for genuinely conversational tasks, like talking through an idea. It is a terrible rhythm for getting work done. Most work is not a conversation. Most work is: take this input, run this transformation, produce this output. The chat box forces everything into a dialog shape, and a dialog shape is wrong for most of what people are actually doing.

Why chat happened anyway

The chat box happened because it is the easiest thing to build. A chat interface ships in a week. It requires no thought about the user's existing workflow. It requires no integration with other tools. It requires no opinions about how output should be shaped. You dump the model behind a text input, you render the tokens as they stream, you call it a product.

It is also the easiest thing to demo. A chat box looks magical the first time, because the user types a question and the model answers. The whole value proposition fits in a screenshot. The fact that the interaction pattern is a terrible fit for most real work does not matter in the demo, because the demo is the first ten seconds of the interaction. The badness shows up an hour in, when the user realizes they cannot actually do anything with what the chat box gave them.

The industry has been optimizing for the demo. Investors see demos. Journalists see demos. Twitter sees demos. The user who has to use the thing for a year is, as always, the last person whose opinion shapes the product.

What the alternative looks like

The alternative is not complicated. It is just: put the model where the other tools are. If the user's work happens in a terminal, put the model in the terminal — not as a chat overlay, but as something pipeable. If the user's work happens in an editor, put the model behind a key binding that transforms selected text in place. If the user's work happens in a spreadsheet, put the model in a cell as a function. If the user's work happens in email, put the model in the mail filter.

The general rule is: identify the composition surface the user already has, and make the model work through it. Do not invent a new surface. Do not ask the user to leave what they are doing. Do not build a castle around the model.

A concrete example:

ps aux | toast "which process is burning the cpu"

Works because ps aux is a tool that produces text, pipes are a composition mechanism that accepts text, and toast is a tool that takes text and produces text. No chat box was involved. No session state was created. No product was opened. The user stayed where they were, typed one additional line, got the answer, moved on. The model was available exactly when it was needed and disappeared exactly when it was not.

Compare this to opening a chat box, typing "can you tell me which process is burning the cpu on my machine," getting back a paragraph explaining how to use ps, copying the command, pasting it into a terminal, running it, copying the output, pasting it back into the chat box, getting an answer. Every step in that second flow is context-switching friction that the pipe eliminated.

Chat has a place

The chat box is not useless. There are genuinely conversational tasks. Rubber-ducking a design problem. Exploring a new topic. Writing dialogue. In these cases, the dialog shape is what you want, because the work itself is a dialog.

But these are a small fraction of what AI tooling is being used for. Most of what people want is transformation: turn this draft into a polished version, turn this log into an alert, turn this code into a refactored version, turn this file into a summary. Transformation is not a dialog. Transformation is a function call. The chat box is the wrong wrapper.

When you do need a chat — and sometimes you do — you should be able to reach for it as a specific tool. toast has an interactive mode for exactly this. You type toast with no arguments and you get a back-and-forth. But it is a mode of a tool, not the tool itself. The default interaction is the pipe. The chat is the exception.

The larger point

The chat box is not a mistake about interface design. It is a mistake about what AI tools are for. The chat box design implies that the user will come to the model. It implies the model is the destination. The model is not the destination. The model is a component. The destination is whatever the user was doing — writing code, reading logs, answering email, analyzing data. The model's job is to make that destination easier to reach.

Interfaces that recognize this will win in the long run, because they are aligned with what the user was actually doing in the first place. Interfaces that do not recognize this will age the way IRC-inspired support widgets aged: they will look like artifacts of a specific moment, and users will migrate to whatever lets them stay where they already are.

Closing

The chat box feels inevitable right now because everyone is building one. It is not inevitable. It is a local maximum in a design space the industry has barely explored, and we think it is a shallow one. The interesting designs are the ones that put the model at the composition surface the user already uses — the shell, the editor, the spreadsheet, the inbox — and let the existing workflow absorb the new capability without disruption.

The chat box asks the user to come to the model. The right design brings the model to the user.

The difference sounds small. It is not. It determines whether the tool becomes part of the user's life or remains a thing they visit occasionally and eventually stop visiting at all.

This essay is part of LinuxToaster — Unix re-imagined for the era of AI.