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

推荐订阅源

博客园 - 聂微东
GbyAI
GbyAI
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
雷峰网
雷峰网
爱范儿
爱范儿
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
P
Proofpoint News Feed
A
About on SuperTechFans
I
InfoQ
F
Fortinet All Blogs
L
LangChain Blog
T
Tailwind CSS Blog

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
For the First Time, AI Was My User
Claire Tsao · 2026-05-27 · via Hacker News - Newest: "AI"

I recently built a small CLI called readable-mermaid. It takes a Mermaid sequence diagram .mmd file — and only sequence diagrams — and outputs a doc-ready diagram image with readable font sizes, proper spacing, and staggered headers. Mermaid’s native output is nearly unreadable once diagrams get complex.

While wrapping up the project, writing the README and thinking about how to describe it, something clicked that I hadn’t noticed during development:

I built this entire thing for AI. Not for a person.

The workflow is: an AI assistant generates a Mermaid sequence diagram as part of writing a design document, calls readable-mermaid to render it, and the output goes straight into the doc. The engineer never runs the command. They probably never even learn its name. They just get a diagram they can actually read.

What’s strange is that a human still benefits. Someone will look at the diagram and understand the architecture. But that person has no relationship with the tool that made it. They’re downstream of a process they never see.

This was a completely new experience for me. For the first time, I wasn’t using AI — I was working for it.

In a way, this isn’t new at all. Writing a utility that gets called by other software is one of the most ordinary things a developer does. But even then, a human always decided where to put the call — someone wrote the line of code that invoked the function. With readable-mermaid, the AI decides on its own that it needs this tool. Right now I still nudge it: a line in a config file that says “when you generate a Mermaid diagram, use this.” But the AI is the one interpreting that, choosing when to act on it, and running the command.

readable-mermaid only handles sequence diagrams. That sounds narrow, but I think that’s exactly right. The tool is fully deterministic — same input, same output, every time. It doesn’t need judgment, creativity, or context. It just needs to run. In the same way we write small, single-purpose functions in code, tools for AI work best when they do one thing and do it reliably. The AI handles the judgment: deciding when a diagram needs to be readable. The tool handles the mechanical part.

I don’t have a grand theory about what this means for software development. I just know it felt different. This time, the human is not the user — just the beneficiary.

It’s a small thing. But it made me look at my work a little differently.

readable-mermaid Github

Discussion about this post

Ready for more?