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

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

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
AI is accidentally making documentation more accessible
theletterf · 2026-04-22 · via Hacker News - Newest: "AI"

I was joking with a colleague that the most highly prized skill of a product designer might soon be writing a well-structured Markdown file. If you work in a large product org, you’re watching agentic AI creep into every aspect of the product design process. Short of throwing my computer into the sea and taking up subsistence farming in the Outer Hebrides, there’s not much I can do to avoid it.

So I’m trying to find positives.

We’ve been testing how machine-readable our design system documentation is. Turns out, AI agents and humans benefit from exactly the same qualities: structure, consistency, plain language, explicit boundaries, no ambiguity.

In accessibility, we already optimise for readers who might struggle to infer missing information. People with cognitive disabilities, autistic people, people with dyslexia, and people reading in a second language. Everyone benefits when headings describe content, definitions come before explanations, and rules are clear. AI retrieval systems need the same things.

Huh.

Big tech orgs are busy building spec-driven development workflows, agent skills, RAG pipelines, and MCP servers. All of it depends on documentation in a format that machines can parse reliably.

Markdown.

I’m conflicted about AI, but I freakin’ love Markdown ❤️. It’s just text. No proprietary overhead. No software dependency. Works with Git. Survives tool churn. And if the underlying instructions are in a format both humans and machines can read, you’re not locked into whatever flashy AI tool launches next week.

Like all the good stuff on the internet, Markdown was created by an engineer to solve a practical problem and shared freely. It became ubiquitous through community adoption rather than formal standardisation or corporate backing.

Anil Dash just wrote an excellent piece on Markdown’s origin story and how AI seems to be giving the format its renaissance moment.

In this dumpster-fire of an industry that feels increasingly chaotic, there’s something a bit comforting about clinging to this small pocket of vendor-neutral stability whilst we melt the ice caps to give users shinier buttons.

Documentation is written to be retrieved, not read

When we write documentation, we often assume someone will read it top to bottom. Even when we skim, we start at the top, absorb context, build a mental model. And we infer stuff, like if you’re reading design system docs, you probably already know what a design system is.

AI agents don’t work like this. They retrieve the most relevant chunk based on semantic similarity and produce a response from that slice. If the definition is three paragraphs in and the agent retrieves paragraph one, it fills in the gaps.

That’s where hallucination creeps in. You’re absolutely right! Not because the model is careless, but because much of our documentation is structured for narrative flow, not retrieval. It was always fragile, humans were just good at compensating.

Writing for AI agents accidentally makes documentation more accessible. A screen reader user navigating by headings needs the same explicitness an AI agent needs. A new team member needs definitions that don’t assume prior knowledge. A developer working in a second language needs sentences that say exactly what they mean. Explicitness helps anyone who can’t rely on context to fill gaps.

Look at well-documented APIs. The ones that specify exactly what parameters do, what they return, what breaks. They’re used more, trusted more, cause fewer support tickets. Explicitness scales.

Start with a structure

Consistent structure gives AI systems predictable anchors for retrieval. It gives humans faster scan paths and clearer mental models. It helps when:

  • each page is structured consistently
  • headings describe content
  • sections are self-contained
  • content makes sense in any order

That structure probably exists already in your design system documentation - you just need to make sure it’s consistent.

Reduce ambiguity

Aim for declarative over descriptive writing. It helps when you:

  • lead with definitions and the most critical information
  • use RFC keywords MUST and SHOULD deliberately
  • avoid hedging language (might, could, tends to)
  • avoid metaphors
  • never assume prior knowledge

To some human readers, this sort of writing can feel a little abrupt. Less friendly. But for readers who need certainty, it’s a relief. For AI, it’s essential.

AI didn’t change the rules, it exposed them

Predictable structure, clear definitions, plain language? Your accessibility team has been asking for this for years.

The way we access documentation is changing, but the qualities that make it good are not. AI has not invented new rules for writing, it has made the cost of ignoring the old ones obvious.

As organisations go all-in on AI, I’m quietly hoping the need for machine-readable docs improves the experience for human readers along the way. If the robots are coming for our jobs, the least they can do is leave us with documentation that doesn’t suck.


If you have opinions, hit me on Bluesky