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

推荐订阅源

小众软件
小众软件
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
J
Java Code Geeks
A
About on SuperTechFans
F
Fortinet All Blogs
B
Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
博客园_首页
博客园 - 叶小钗
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
云风的 BLOG
云风的 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.