{"slug": "the-intelligence-ladder", "title": "The Intelligence Ladder", "summary": "A software developer has launched Studio (studio.almadar.io), a free beta tool that organizes software work into an \"intelligence ladder\" of composable units called behaviors, letting developers estimate which language model a task needs and roughly what it will cost before work begins. The developer argues that coding agents currently give fuzzy, unreliable estimates that trap users in sunk-cost loops, and warns that rising hardware costs could restrict software creation to those who can afford frontier models.", "body_md": "I have been sitting with this question for a long time. The more I fold language models into my daily work as a software developer, the less sure I am about a very basic thing: **which model do I actually need for the task in front of me?**\n\nTake a concrete case. I want to build a chat app. What is the breakdown of that work that would let me give an honest estimate of the time and the money it will take? That is not an unreasonable thing to ask. Every other trade answers it. A builder quotes a kitchen. A printer quotes a run of five thousand flyers. But the industry around coding agents has normalized a fuzzy answer. The model will happily estimate the work for you, and the estimate will be wrong.\n\nImagine the alternative. I ask for a chat app and the tool answers: *sure, that will be twenty dollars.* Would we accept that? Or is the fuzzy state doing something for us? I think it ropes us in. We start, we spend, we are too deep to stop, and we tell ourselves the next prompt will land it. That is the sunk cost trap with a chat window on top.\n\nThis is not a healthy state for any industry. We are used to technology that works when you turn it on. I think it is careless to ship coding agents to the public on the promise that they will deliver, without any way for the buyer to know what delivery costs. It burns trust, and I expect the burn to show up as a real backlash once enough people get tired of the loop.\n\nThink back to how things worked before. You were one search away from software written by a competent engineer who would deliver what they promised. If they did not, the reviews were brutal and public. There was accountability, and there was a price.\n\nThat is one side of it. The other side is access. Can everyone afford these tools, or only the people who can afford them? What about running a model locally? What does a machine, or a rack of them, cost if you want to do this work yourself?\n\nAre we heading toward a world where only the wealthy can build software? That would be new, and it would be dangerous. For decades you needed an ordinary computer to make something. Now the gap keeps widening, and the hardware needed to run the frontier does not seem to be shrinking. It gets more expensive by the month.\n\nWhat is the promise here? Why am I paying more? Did I ask for this upgrade? Does the new model respect what I actually need, or is it solving problems I do not have? Picture the games industry doing this: a new graphics card required every three months or your games stop running. Nobody would accept it. Is the only reason we accept it from AI that the technology is called experimental and we have agreed to be the test subjects?\n\nWhat are people actually doing with these models? Does all of it need a supercomputer?\n\nWhy is nobody talking about this?\n\nSo many questions. Here is where they lead me.\n\nWe need an intelligence ladder. A way to sort work into rungs, and to say for each rung which model it needs and roughly what it costs, **before the work starts**.\n\nGo back to the chat app. To build a chat you need an interface with an input box. You need a server that broadcasts a message to everyone connected. You need channels, membership, some notion of who is online. Every one of those pieces has to be sized and placed on a rung. Then the model choice and the estimate fall out of the placement instead of out of a guess.\n\nI have spent a year building this. It is not finished, but it works well enough that I can share what I have. The product is at [studio.almadar.io](https://studio.almadar.io) (it's in beta and it's free to use).\n\nThe unit of work in my system is a **behavior**. A behavior is a shareable piece of a program: one screen with its state machine, its events, and the data it touches. Behaviors compose. I will go into the mechanics in a later post, but the important thing for this one is that a behavior can be dropped into any program that meets its conditions, and it does not need to be written again.\n\nThe real-time chat app in my library is a good example. It is five behaviors:\n\nThose five are assembled almost entirely from shared components that the rest of the library also uses: the app shell, the browse list, the record modal, the detail panel, search, the confirmation dialog, the notification overlay, and the discussion thread. None of those were written for chat. They were written once.\n\nThe library today holds a little over a thousand behaviors: around six hundred **atomic components** (the smallest building block) and four hundred and fifty **organism components** (organisms are composed of atoms). A new app is mostly a matter of picking from them.\n\nThat is what makes the ladder possible. When a request comes in, the agent does not start writing. It decomposes the request into behaviors, and then each behavior is looked up against the library. The lookup is an embedding match with a fixed floor and margin, so the result is a decision the system can log, not a feeling.\n\nThe ladder has four rungs, and I think of it as a cache, the same way a processor has one.\n\nEvery step of this is metered. Here are some numbers from my evaluation runs, all on models running locally on my own machine, with cost estimated at hosted rates so they are comparable.\n\nA replay or a full hit costs zero or one model call. That is the floor, and it is where I want most requests to land.\n\n| Request | Model | Model calls | Tokens | Time | Estimated cost | Outcome | \n|---|---|---|---|---|---|---|\n| Fresh e-commerce app | 30B coding model | 62 | ~1.1M | 13 min | $0.08 | built | \n| One dashboard setting edit | 27B general model | 12 | ~146K | 4 min | $0.07 | built | \n| Same class of edit | smaller model | 3 | ~20K | 21 sec | < $0.01 | built | \n\nThe two e-commerce rows are the same task on the same rung. One cost sixteen times more and produced no app at the end. That is the model choice showing up as a number instead of a feeling.\n\nI want to be honest about these figures. Many of the runs in that log failed. Small local models get stuck in tool loops, and I am still working through it. At the moment I can see which rung the request landed on, how many calls it made, and where it stalled. That is the thing the industry does not give you, and it is the thing that lets me improve the system: a request that falls to the top rung is a cache miss, and every miss is a candidate for a new behavior in the library.\n\nThe results so far come down to two things.\n\n**The library compounds.** Behaviors are shareable, and the agent finds them through the same lookup it uses for everything else. Every behavior added moves some future request down a rung. If you choose to share what you build, it lowers the cost for the next person as well.\n\n**Cost becomes predictable.** You know before the build starts how much of your app is replay, how much is a hit, and how much is genuinely new. The genuinely new part is the only part that costs real intelligence, and you can see exactly how big it is.\n\nThat is what lets you try ideas without bracing for the bill.", "url": "https://wpnews.pro/news/the-intelligence-ladder", "canonical_source": "https://dev.to/almadar/the-intelligence-ladder-k7d", "published_at": "2026-09-12 03:12:52+00:00", "updated_at": "2026-09-12 03:26:26.621886+00:00", "lang": "en", "topics": ["ai-tools", "ai-products", "developer-tools", "large-language-models", "ai-agents"], "entities": ["Studio", "studio.almadar.io"], "alternates": {"html": "https://wpnews.pro/news/the-intelligence-ladder", "markdown": "https://wpnews.pro/news/the-intelligence-ladder.md", "text": "https://wpnews.pro/news/the-intelligence-ladder.txt", "jsonld": "https://wpnews.pro/news/the-intelligence-ladder.jsonld"}}