OpenAI's direction is getting clearer: ChatGPT and Codex are moving from "answer my question" to "help run the work." OpenAI recently introduced workspace agents in ChatGPT — teams can create shared agents that handle complex tasks, long-running workflows, approvals, reports, CRM updates, software requests, vendor-risk reviews, and even parts of month-end close. The important point isn't that AI can write better emails; it's that AI is starting to sit inside the workflow — gathering context, following a process, asking for approval, and keeping work moving across tools.
OpenAI Becomes the Work Layer, AI Search Rewrites the Publisher Model, Why AI ROI Can't Be Tool-Led — What Loop Engineering Is, and How the Tech Function in Financial Services Is Adopting AI
Editor's Take
Back after a week off for a family vacation. This issue runs in three parts: three AI-news items, an AI Demystified on the term you're starting to hear — "loop engineering" — and an Org Redesign briefing on AI for the technology function in financial services. A through-line connects them: AI is moving inside the workflow, and the value comes from redesigning the work, not distributing the tool.
This Week's Stories
AI Search Is Rewriting the Publisher Model
Google / arXiv / Axios / HubSpot / Semrush IndustryAI search is changing the economics of the internet. Google AI Overviews and similar answer engines give users synthesized answers before they click into the original source. One 2026 study found AI Overview exposure reduced daily traffic to affected English Wikipedia articles by about 15%; another found AI Overviews appeared in 13.7% of trending queries overall and 64.7% of question-form queries. This is not just an SEO problem — it's a business-model problem. The old bargain (publishers create content, search engines send traffic, publishers monetize the visit) breaks when the answer is consumed on the search page: the publisher may still supply the raw material but lose the click, the ad impression, and the customer relationship.
The answer is not to abandon SEO. Google's own guidance says foundational SEO still matters for AI search — technical accessibility, clear page structure, helpful content, product and local details, and pages eligible to be indexed and shown with snippets. But SEO is no longer enough by itself. The new playbook is SEO + AEO/GEO. SEO helps your content rank; AEO/GEO helps your brand become the answer. That means content AI systems can confidently understand, cite, and summarize: clear explainers, comparison pages, FAQs, original research, customer proof, pricing/product details, author expertise, schema markup, and content written around real buyer questions — not just keywords.
Measurement changes too. Ranking #1 matters less if the answer is consumed above the link. Teams should start tracking AI visibility: when the brand is mentioned, whether the answer is accurate, whether competitors are cited instead, which pages are used as sources, and whether AI-assisted traffic converts differently.
AI ROI Is Still Unclear — So Adoption Cannot Be Tool-Led
McKinsey / BCG ResearchEnterprise AI usage is up. Enterprise AI impact is still uneven. McKinsey finds AI high performers are much more likely to redesign workflows, embed AI into business processes, track KPIs, and have leaders actively drive adoption. BCG makes a similar point: AI is already woven into daily work for many employees, but real business value comes when companies go beyond tool deployment and redesign how work gets done. Giving everyone ChatGPT, Claude, or Copilot is not transformation. It is distribution. The real work is use-case discovery, workflow redesign, measurement, and behavior change — which is also where AI Champions matter. The best Champions aren't just power users with clever prompts; they're translators who can spot repeatable work, redesign the process, test the AI-enabled version, document the before/after, and help peers adopt it.
What Is Loop Engineering?
Steinberger / Osmani / Cherny / Claude Code & Codex docs ExplainerThe shift from prompting an agent yourself to designing the system that prompts it for you.
You may have heard the phrase "loop engineering." It got its name in June 2026, when Peter Steinberger posted that you shouldn't be prompting coding agents anymore — you should be designing the loops that prompt them. Google's Addy Osmani named and structured the idea the next day, and Anthropic's Boris Cherny, who leads Claude Code, put it bluntly: "I don't prompt Claude anymore. I have loops running. My job is to write loops."[1,2,3]
Prompt engineering is: write one good instruction. Loop engineering is: build the system so the agent finds work, acts, checks the result, and knows when to stop — without you typing the next prompt each time. The cleanest way to hold the concept is a stack, where each layer wraps the one inside it rather than replacing it:
Prompt engineering — the words you send. Context engineering — everything the model can see when it answers. Loop engineering — the repeating cycle that drives the agent toward a goal, on a schedule or a trigger, with you out of the per-step seat.[2] A loop runs roughly: Goal → Act → Check the result → Fix or continue → Stop when a condition is met. Note where the weight sits. Most coverage draws the cycle and makes Act look like the hard part. It isn't.
The part most coverage misses
The hard part of a loop is not autonomy. It is the check and the stop. The most useful line in the whole discourse: a loop is a task with a check; a task without a check is just hope.[4] An agent that acts ten times without a real verification step doesn't do ten times the work — it compounds ten times the error, faster, with less of you watching. The craft of loop engineering is making the check real and defining what proves the agent should stop. Everything else — model choice, scheduling, helper agents — is secondary.
The other reframe that carries the whole idea: in the loop versus out of the loop. The old way put a human inside the loop — you gave an instruction, read the answer, typed the next one. Loop engineering puts a small designed system in that seat instead. That's the actual shift. It's also why "draft this email, then review it, then give me the improved version" is not loop engineering — it's a good multi-step prompt, but you're still the one in the seat, hitting enter.[3]
"So what do I actually use to loop?"
A year ago, a loop meant writing and babysitting your own pile of shell scripts. The shift in 2026 is that the pieces now ship inside the agent tools, so for most people the answer is: the same tool, with a feature you may not have turned on.[5] The two that matter today are Claude Code and OpenAI Codex. They've converged on the same primitives with different names:[6,7]
A scheduled or triggered run — in Claude Code, routines that run on a recurring schedule, a GitHub event, or an inbound API call (managed from the CLI with /schedule), plus /loop for re-running a prompt on an interval inside an open session; in Codex, the Automations tab. This is what makes a loop a loop instead of a one-off.[7] A goal command (/goal in both) — sets a completion condition and the agent keeps working across turns until that condition holds, then stops on its own. This is the stop rule, made into a feature.[6] Worktrees, skills, and connectors — isolation so parallel runs don't collide, written-down project knowledge so the agent doesn't re-guess every cycle, and MCP connectors into the tools you already use.[5]
You don't have to be a developer to recognize the principle. Plenty of non-coding tools now have the same two ingredients: a trigger (a schedule, an incoming email, a new row) and a goal-shaped instruction ("don't stop until you've found three options with confirmed pricing").[8] If a tool can start itself on a trigger and check its own output against a condition you wrote, you can build a loop in it.
This isn't a hunch; it's baked into how the better tools are built. Claude Code's /goal, for instance, hands the "are we done?" decision to a separate, smaller model that only reads what the working agent wrote down — it can't run your tests itself.[6]
The honest counter-current
The people who coined the term are themselves cautious, and that caution is the story, not a footnote. Osmani called himself skeptical and warned that token costs swing wildly depending on whether you're "token rich or poor."[2] The recurring failure modes practitioners name: weak verification (the agent declares done without proof), comprehension debt (output ships faster than anyone can understand it), and cognitive surrender (accepting whatever the loop returns because checking is tiring). An unattended loop is also a loop that makes mistakes unattended. This connects directly to two threads we've tracked — token economics (Issue #14's "Token-Price Reckoning") and the "AI augments, humans sign off" principle for any consequential work.
What this means for you
You're probably not writing while-loops around a coding agent. But the role shift underneath the term reaches every knowledge worker, and there are three concrete moves. First, think in cycles with checks, not one-shot outputs. Even when you're still the one prompting, design the verification step on purpose: what would tell me this is wrong? Second, treat the stop rule as the deliverable. Before you automate anything, write down what "done" looks like and what would make you pull the agent out. If you can't state the stop condition, the task isn't ready to loop. Third, keep yourself in the review path as you take yourself out of the prompt path. The leverage of a loop is that it runs without you. The risk is identical. Decide in advance which decisions still need a human signature.
The skill is no longer asking once, and it was never really asking perfectly. It is deciding what gets checked, what gets to run on its own, and who is still watching when it does.
- [1] Steinberger, P., post on X, June 7, 2026 (popularized the framing).
- [2] Osmani, A., "Loop Engineering," addyosmani.com/blog/loop-engineering, June 8, 2026 (the essay that named and structured the practice; primary source for the layered stack and the skepticism on token cost). Reposted at O'Reilly Radar.
- [3] Cherny, B., remarks at the WorkOS Acquired Unplugged event, June 2026 (the "I don't prompt Claude anymore" quote), as reported by WorkOS and multiple outlets.
- [4] "Task with a check" framing synthesized from practitioner field guides; the underlying loop pattern was formalized in Yao et al., ReAct (2022), and extended in Shinn et al., Reflexion (2023).
- [5] Osmani, A., "Loop Engineering" — addyosmani.com/blog/loop-engineering (on the loop primitives shipping natively inside the products).
- [6] Keep Claude working toward a goal, Claude Code docs — code.claude.com/docs/en/goal (a separate small model evaluates the completion condition after each turn and cannot run commands or read files independently).
- [7] Automate work with routines, Claude Code docs — code.claude.com/docs/en/routines;
/loopand in-session scheduling — code.claude.com/docs/en/scheduled-tasks. - [8] Whytryai, "Don't Let 'Loop Engineering' Scare You Off Loops," June 2026 — whytryai.com/p/loop-engineering (the "regular people" version: trigger + goal-shaped instruction).
This Week's Briefing
AI for the Technology Function in Financial Services: The CTO's AI Decision
An executive briefing for the CTO, CIO, CISO, CDO, and the board — from productivity tools to operating-model reinvention.
The technology function carries a tension worth naming directly: IT is both an adopter of AI inside its own work and the backbone that lets every other function adopt AI safely — supplying the data platforms, identity, model governance, and security controls. A firm whose IT house isn't in order cannot govern AI elsewhere. Generative and agentic AI now sit on top of a function regulators already supervise tightly, and the 2024–2026 evidence is that a minority of firms are achieving genuine workflow and operating-model redesign while most remain in a productivity-tool phase. The briefing below is the full argument and evidence layer — and it ties straight back to this week's third news item: tools create possibility, workflows create ROI.
Get the newsletter in your inbox
A weekly, curated digest on AI and organizational design.