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

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
腾讯CDC
D
Docker
The Cloudflare Blog
量子位
爱范儿
爱范儿
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Vercel News
Vercel News
MyScale Blog
MyScale Blog

HN's home page

Rainbow Query Language | Hacker News Exec into Node via Kubectl An AI native hedge fund The Seven-Action Documentation Model | Hacker News Package Manager for Kubectl Plugins Tongan Castaways | Hacker News Tech overlords plan for conscious AI to conquer the cosmos. What could go wrong? Data Breach Disclosure Lag Is Getting Worse How LLMs Work | Hacker News I Dropped PRDs for Shape Up Go Experiments Explained | Hacker News FCA's Palantir deal could expose UK financial data to Trump's US, critics fear WebXR BCI for Neural-Adaptive Avatar Control in Mixed Reality The first murder conviction via DNA analysis Tom Interviews Theo de Raadt of the OpenBSD Project (2019) [video] Show HN: Replace shell commands with bun shell typescript scripts Quay.io Is Down | Hacker News AI driven analysis of brokerage account fees in the UK Bill Gates Spent Years Crafting His Image. Now It's Cracking Using LLMs to secure source code Wi-Fi 8 in the Lab [video] The household battery revolution that could change energy bills and the world Is Python Becoming Pinyin? | Hacker News Livia – Executive Assistant | Hacker News FindMyPipe – Query Apple Find My from Linux for AI Agents Show HN: Agent skill for creating product launch videos with Remotion RecruitMyself – AI job search copilot for resumes and applications AI coding agents and the erosion of system understanding The 'Resting' Generation and South Korea's Youth Recession AMD Computex 2026: 10 Years of AM4, AM5 Support Through 2029
Using Code Maps | Hacker News
jstakelum · 2026-06-19 · via HN's home page

I keep seeing the same pattern in AI coding tools: The model is asked to simultaneously be planner, parser, state manager, repair engine, and memory. That produces three structural failures: nondeterministic memory, non-restartable execution, non-auditable reasoning. Smarter models don't fix them.

That led me to a realization: Every one of my projects needs the same collection of primitives — prompt building, LLM calls, chunking, embedding, file I/O — over and over. So I started collecting them as standalone CLIs. And then, I let the model only write the 5% or so that's genuinely novel. That led to a markup language to wire those CLIs together declaratively — a workflow map.

That led me to the realization that the map is the application--source code is ephemeral.

And if a pattern appears across projects, promote it to a new CLI. The catalog grows. The model's job shrinks. For tractable software, maybe 95% of operations become primitives.

And that means the job of the LLM switches from being a code generator, to being a map generator.

And, I can imagine the system can improves itself through use, by considering if new things it codes have reusability potential, and thus assmptotically close the gap--but never reaching 100%--for what is reusable components that just need to be wired together by the map.

And perhaps an eco-system of shared pre-built components.

The same algorithm that designed this architecture is the algorithm the architecture uses to generate itself. Generation 0 is Python. Generation 1+ are maps that generate maps. Self-similar at the meta-level.

I'm publishing the full blueprints — white paper, formal grammar (WML), RFC, implementation plan, and claims chain with dropped overclaims explicitly named.

All in one folder (see url above)

Would love feedback from anyone who finds this idea interesting and would love to chat/debate about it.