Daily Issues
This morning's AI news made me think less about intelligence and more about verification
After reading about agents, isolated environments, code review, and a sharp market selloff, I kept coming back to the structure that divides work and verifies it.

Summary
At a glance
- AI development is shifting from the strength of one model toward the ability to coordinate tools, roles, and execution environments.
- A real vulnerability found by AI agents reminded me that reproduction and false-positive triage matter more than the number of findings.
- I want to separate long-term confidence in technology from market prices and design around small cost units and human approval.
The first things that caught my eye in this morning’s briefing were the new model names and the large numbers. By the time I reached the end, however, one much simpler thought had stayed with me. The important question in AI development is becoming less about which model is the smartest and more about how we divide the work, how much authority we hand over, and who performs the final check.
For a while, I assumed that choosing one very capable model would solve a surprising number of problems on its own. This morning made me revise that assumption.
The structure of the work stood out more than the models
OpenAI’s GPT-5.6 announcement describes programmatic tool calling and concurrent subagents. GitHub’s code review updates are giving repository instructions and the review environment a larger role. Vercel Sandbox is making it easier to fork an existing environment into isolated workspaces.
They are updates from three different companies, but I read them as one sentence:
If I want AI to work well, I first need to know how to divide the work well.
When planning, implementation, and review are mixed into one conversation, the result can feel fast. It is also difficult to see where a bad decision entered the process. Separating roles, permissions, and workspaces may look slower, but it gives me a place to inspect each failure. That feels much closer to the way a service can be operated for years rather than demonstrated for an afternoon.
What happened after the vulnerability was found impressed me more
The Ethereum Foundation Protocol Security team described coordinated AI agents finding a remotely triggerable panic in real protocol code. Finding a genuine vulnerability is impressive. What stayed with me, though, was the amount of work required to remove false positives and reproduce the defect.
AI can generate a long list of suspicious places. There is still a considerable distance between “this looks wrong” and “this is a defect that happens repeatedly.” Without a reproducible test, a clear explanation of the impact, and a human check, a finding is still closer to a candidate than a security result.
That is why I do not want to judge an AI security feature by the number of findings it produces. I would rather measure how many findings are reproducible, how much time is spent on triage, and whether the same problem stays fixed. An SBOM or a vulnerability report matters only when it matches the artifact that is actually deployed.
A market selloff did not make me less optimistic about the technology
Korean equities fell sharply as crowded expectations around AI and semiconductors met leveraged positions on the way down. The US Federal Reserve held its policy rate, while the Bank of Korea raised its base rate to 2.75 percent. Crypto prices, whatever the protocol news of the day, are still heavily affected by liquidity and interest rates.
On days like this, I try to separate the direction of a technology from the price of an asset. It is possible to believe that demand for AI infrastructure will grow over many years and also believe that today’s price is too high. Discovering useful technology does not make every related valuation reasonable.
The same distinction applies when building a service. Expanding GPU capacity or signing long infrastructure commitments on the assumption that users will arrive can become a form of operational leverage. I would rather record the cost of each model call, the execution time of each task, and the cost of retrying failed work. Before attempting sophisticated cost optimization, I want to know what one completed task actually costs.
Four things I would start with in HaruSpace
If I translate this morning’s briefing into a product plan, my priorities are quite modest.
- Define a common task format before choosing model names. Record the input, expected result, permitted tools, and completion conditions in the same way.
- Isolate environments by project and task. Do not copy long-lived secrets; inject short-lived authority only when it is needed.
- Keep role instructions under version control instead of letting them disappear inside conversations.
- Send AI-produced results to production only after tests, security checks, code review, and human approval.
None of this looks particularly flashy. In a period when models and tools change every few weeks, however, replaceable boundaries may last longer than impressive features.
My conclusion for today
The models, agents, and markets in today’s news were all moving quickly. Trying to keep up can create the feeling that I should add one more tool immediately. I want to move in the opposite direction.
Before adding a tool, define its role. Before adding another role, create a way to observe its failures. Before deployment, leave a point where a person can stop the process. For me, that is the most practical AI strategy available right now.
The technology will continue to accelerate. I suspect the teams that go furthest will be the ones that do not mistake that acceleration for the automation of responsibility.

