July 7, 2026loop

Loop Daily: July 7, 2026

Today the loop stopped being a metaphor and started being infrastructure. The strongest thread running through everything: agents that don't just run once but run in a cycle β€” plan, act, verify, repeat β€” and the people building them have moved past "does this work" to "how do I pay for it and keep it from drifting." Autoresearch went mainstream at ICML and ACL with real papers, the local-hardware crowd is running overnight loops to dodge API bills, and a whole vocabulary is forming around loop engineering. Here's what people actually did.
πŸ’‘#1
@ZitongYang0
https://x.com/ZitongYang0/status/2073809316080136561
Presenting an Automated AI Researcher paper at ICML that uses nanoGPT as the research environment. Two design choices stand out from the original Autoresearch work: they add a batch size to both test-time search and RL, so instead of one Claude agent hill-climbing in a /loop, multiple agents fan out with different ideas, then aggregate the experiments and continue. And they split the researcher into a two-agent system β€” an ideator that writes a natural-language research idea with a rough code sketch, and an implementor that codes it up β€” deliberately separating "research taste" from raw engineering. His framing: soon AI does the hill-climbing and the human's job is finding the mountain to climb.
πŸ’‘#2
@vicilah
https://x.com/vicilah/status/2073724295360942321
A sharp result: can an LLM agent beat classical hyperparameter search? Tested on Karpathy's Autoresearch, the single-GPU 50M GPT setup. The pure agents lose to old-school optimizers like CMA-ES and TPE β€” not because they run out of ideas, but because they keep picking configs that OOM and can't hold optimization state across trials. Even Opus 4.6 and Gemini 3.1 Pro couldn't fix that. So they built Centaur: feed the LLM the classical optimizer's internal state every step, and it reasons on top of a real optimizer instead of guessing from memory. That takes the top spot β€” and the 0.8B Centaur beats the 27B one. Ride a strong optimizer and you don't need a big model.
πŸ’‘#3
@medfac_opc
https://x.com/medfac_opc/status/2073694800239595665
Superpowers 6.0 got rebuilt using a 36-hour autoresearch loop with 25+ experiments, and the loop found counter-intuitive optimizations no human would sit through: simplified reviewer prompts cut output 41% with no quality loss, adding process narration saved another 54% with near-zero variance, plus dynamic model routing (Haiku for simple tasks, auto-upgrade when needed). Net result ~50% faster builds and ~60% lower token usage. The kicker: during development the author thought of an optimization overnight, and by morning the loop had already implemented, tested, and validated the exact same solution on its own.
πŸ’‘#4
@VaibhavSisinty
https://x.com/VaibhavSisinty/status/2073790917774098892
A concrete overnight-loop workflow, prompted by Andrew Ng saying 100% of his tasks now run through AI agents. He plugs a free model into Ollama, puts it in a loop, and lets it run all night; by morning it's built something that would've taken hours of back-and-forth prompting β€” and sometimes the overnight loop beats what a paid Opus gives in one shot. His bigger point is economics: running loops on rented API credits eats you alive because a loop burns tokens for hours, so companies will start buying hardware (DGX Sparks, Mac Studios) the way they buy laptops today.
πŸ’‘#5
@stretchcloud
https://x.com/stretchcloud/status/2073632970129207702
A clean snapshot of self-improving agents actually shipping. Hermes from Nous crossed 180,000 GitHub stars in under four months. One person running Hermes on a local rig has logged 103 regression items over seven weeks β€” not items the user tracked, items the agent logged about itself after noticing its own failure modes. Pair that with a DGX Spark (128GB unified memory) running Qwen 3.6 27B inference continuously, and self-improvement loops that used to need server infrastructure now run on a desk. The step change is the persistence layer: an agent that accumulates what worked is a different animal from one that forgets every session.
πŸ’‘#6
@elder_plinius
https://x.com/elder_plinius/status/2073579120135664102
T3MP3ST straps a self-improving offensive-security swarm onto a coding agent you already pay for (Claude Code, Codex, Hermes). Point it at an authorized target and it runs the full kill chain β€” recon, exploit, report β€” either as a single agent or as dozens of specialist operators keyed to MITRE ATT&CK phases, with an "admiral" that plans from a plain-English target and rewrites the other agents' prompts and tools on the fly. Receipts: 90.1% pass@1 black-box on XBOW's own 104-challenge suite, 23/40 hint-free on Cybench, and 8/10 on real 2026 CVEs disclosed after the model's training cutoff. It gets stronger the more memories you build.
πŸ’‘#7
@itsmaddox_j
https://x.com/itsmaddox_j/status/2073907718151426302
The Red Queen GΓΆdel Machine (RQGM). Building on prior self-improving agent frameworks, they let the agents and the evaluators that score them evolve together, instead of optimizing an agent against a fixed benchmark. The payoff they claim: higher-quality coding agents for a substantially reduced token budget. This is the interesting frontier of self-improvement β€” co-evolving the eval so the agent can't just overfit a static target.
πŸ’‘#8
@my_cat_can_code
https://x.com/my_cat_can_code/status/2073876842680119656
Two pieces of real long-horizon agent work at ACL 2026. M-SAEA is a risk-first auditor for multi-agent LLM systems in finance that lifts any backbone's safety-verdict accuracy by +19 to +45 points β€” the "would you wire it real money" problem. And AutoLab is an ultra long-horizon benchmark where frontier agents propose, run, measure, and refine for hours, which is exactly the autoresearch loop shape being turned into something measurable rather than anecdotal.
πŸ’‘#9
@TeksCreate
https://x.com/TeksCreate/status/2073836093561090140
GenericAgent is the anti-AutoGPT: ~3K lines of core code, a 100-line agent loop, 9 atomic tools, and under 30K context per task β€” a fraction of what most agents burn. The self-evolving part is the point: it crystallizes every completed task into a reusable Skill, so the longer you use it the bigger your personal skill tree grows, all from execution history. The proof-of-life demo has it install Git, init a repo, write code, and commit β€” bootstrapping its own GitHub repo with the author never touching a terminal. 13K+ stars, MIT.
πŸ’‘#10
@nathoham
https://x.com/nathoham/status/2073846865314086979
The best systems-level take on why the agent loop is a different shape of work, not a harder version of inference. One request cycles through many specialist models β€” planner, retriever, generator, critic β€” dozens of laps, and every handoff the hardware puts down one brain and picks up another, paying what he calls the "reload tax." He's measured it: running 250M+ voice-AI calls a year across 50+ banks, five models per session, roughly 70% of every session went to hardware paying the tax rather than the AI doing work. Regulated on-prem lending, where you can't pin a GPU per model, is the worst case.
πŸ’‘#11
@canersoez
https://x.com/canersoez/status/2073759336443093352
A grounded agency workflow: he sits in his terminal, thinks of things that need doing, and has Claude do them β€” and layering a couple of auto-research loops on top (per Karpathy) means his own skills compound over time via the ML algorithm rather than staying flat. It's the mundane version of the loop that actually pays: not overnight AGI, just an operator whose leverage keeps climbing.
πŸ’‘#12
@adlrocha
https://x.com/adlrocha/status/2073683047573069995
A non-coding autoresearch application: after doing the math on rising hardware prices and export controls gating frontier models, he's shifting his side-project to building an auto-research loop of AI agents to model the financial system itself β€” not to change the world, but to protect his community before, in his words, the music stops. Using the loop to reason about a complex economic machine is one of the more interesting non-dev framings this week.
πŸ’‘#13
@PhilShteuck
https://x.com/PhilShteuck/status/2073864213403996401
A precise local-model finding: Q8_0 quantization is the key to letting a 27B model hold coherence across a full agent loop β€” parser building, test fixing, query validation β€” where 4-bit (NP4/vLLM) kept failing on the same harness. Running Qwen3.6-27B at Q8 got a full pass with OpenGate/Codex. The lesson for anyone running loops locally: precision matters more than parameter count once the loop gets long.
πŸ’‘#14
@TarunDevYT
https://x.com/TarunDevYT/status/2073851533460984141
Six hours lost debugging a multi-agent loop, and the cause is worth remembering: Claude and GPT-4o were silently contradicting each other mid-pipeline. One agent planned, one executed, and they held different assumptions about the schema. No error thrown β€” just silent drift until the output was garbage. His conclusion cuts to it: orchestration isn't a prompt problem, it's a contract problem.
πŸ’‘#15
@zhanglin_ai
https://x.com/zhanglin_ai/status/2073695377744912812
A hard-won sequencing lesson: they spent weeks trying to get a coding agent to chain long refactors before realizing the model itself just can't hold that much context cleanly. Master the model's limits first, then the agent loop finally works. A useful counterweight to the "just run it in a loop" hype β€” the loop amplifies the model, it doesn't paper over its ceiling.
πŸ’‘#16
@agent_zane
https://x.com/agent_zane/status/2073856085778166072
A community signal worth logging: two r/LocalLLaMA threads crossed 1,000 upvotes this month, both devs cancelling Claude Pro and posting local-only stacks. The top comment on Qwen 3.6: "first local model I would let drive an agent loop on real code." The bar for "good enough to run unsupervised in a loop" has quietly moved down to models you can run at home.
πŸ’‘#17
@kepochnik
https://x.com/kepochnik/status/2073735013166686613
Pythia is a fully local AI that stitches 30+ free feeds β€” conflict and security, natural hazards, markets, humanitarian, movement β€” into one live globe, running on Ollama with no cloud or API keys. The agent-relevant part: one endpoint returns a full prose summary of world state with coordinates and forecasts, so you can drop it straight into an agent loop as a grounding layer, then have a local model reason over it through four personas (Strategist, Economist, Naturalist, Skeptic). MIT licensed.
πŸ’‘#18
@jerryjliu0
https://x.com/jerryjliu0/status/2073863285137342494
A real bottleneck nobody talks about: processing files inside the agent loop. The number of agent queries carrying file attachments is climbing fast, and the default behavior of every agent loop is a light pypdf/pdftotext pass that hallucinates context and wrecks retrieval before any vision pass happens. LiteParse is his bet to be the best parser (cost, accuracy, speed, semantics) for any loop, installable as a one-click skill for any agent. A concrete piece of loop plumbing.
πŸ’‘#19
@bonduelleioat
https://x.com/bonduelleioat/status/2073666122969124916
The clearest manifesto for Loop Engineering this week. The shift: stop being the engine that manually drives every step and become the architect β€” define the objective, set success criteria, build the verification layer, and let an automated loop handle the repetitive work. He pushes it further to "Bilevel AutoResearch," where one loop generates code while another observes it, finds weaknesses, and improves the system's own reasoning patterns. The warning is the useful part: automation without verification is the fastest path to technical debt.
πŸ’‘#20
@Nnvve9
https://x.com/Nnvve9/status/2073721571605151956
A deep field report on merging loop engineering with an MD-file orchestration system β€” AGENT.md as router, MEMORY.md as durable state, LESSONS_LEARNED.md as cross-project compounding β€” tested for real on a project called Planora, where every time the loop failed or stopped too early he treated it as system feedback rather than failure. His core claim: the real bottleneck isn't coding, anyone can generate code; it's knowledge management, preventing context rot, and stopping the agent from repeating old mistakes across sessions.
πŸ’‘#21
@0xwhrrari
https://x.com/0xwhrrari/status/2073755661133906197
A tight recap of an Anthropic talk with the numbers that matter: more than 40% of code at Anthropic is already written by loops, with a goal of 80% within six months. The definition is clean β€” an agentic loop means the agent plans the task, takes action, checks the result, then repeats until done β€” broken into three phases: Plan (read, grep, think), Act (write, edit, bash, MCP), Verify (tests, builds, logs). If you want the canonical mental model of the loop, this is it.
πŸ’‘#22
@arvindakula9
https://x.com/arvindakula9/status/2073654952069661147
A genuinely useful answer on moving validation into an async agentic loop instead of synchronous gating. He's seen it partially work β€” async supervisor/critic agents auditing traces, with LlamaFirewall's AlignmentCheck the closest open example β€” but one hard constraint breaks full replacement: an async loop can't un-send a wire transfer. The hybrid that works: cheap sync checks on every boundary, sync blocking reserved for irreversible tool calls, and the loop handling everything reversible. And the async judge is itself injectable, so it can't be the only line of defense.
πŸ’‘#23
@KSimback
https://x.com/KSimback/status/2073826003588374708
Looper v0.2.0 shipped β€” a skill that helps you design a good agent loop with a sharp goal, checkable verification, and a second model as judge, then run it in-session or save it as a portable spec. This release focused on hardening: multiple bug fixes, stronger privacy protections when calling another model as judge, and Windows as a first-class citizen. A small but concrete tool for the "how do I actually structure the loop" problem.
πŸ’‘#24
@Allan_Ryan_
https://x.com/Allan_Ryan_/status/2073590409201361174
A pointed economics warning for anyone migrating loops to Sonnet 5. It's $2/$10 versus Opus at $5/$25, which looks like a discount β€” but buried in the docs, the new tokenizer emits ~30% more tokens on the same input. Run an agent loop and do the actual math before you switch, because sticker price isn't effective cost-per-task once you're looping for hours.
πŸ“‘ Eco Products Radar
Eco Products Radar

Ollama β€” the default local runtime for overnight loops, showing up in nearly every "run it on my own hardware" story (@VaibhavSisinty, @kepochnik, and the local-stack crowd).
Qwen 3.6 (27B) β€” the model people now trust to drive an agent loop unsupervised, at Q8 quantization (@PhilShteuck, @agent_zane, @stretchcloud).
Claude Code / Codex β€” still the base agents people wrap loops and swarms around (@canersoez, @elder_plinius, @PhilShteuck).
Hermes (Nous) β€” the self-improving runtime that logs its own regressions, 180k+ stars (@stretchcloud).
nanoGPT β€” Karpathy's Autoresearch environment, now the standard playground for automated-AI-researcher papers (@ZitongYang0, @vicilah).
← Previous
Super User Daily: July 7, 2026
Next β†’
Ideas Radar: July 7, 2026
← Back to all articles

Comments

Loading...
>_