July 17, 2026loop

Loop Daily: July 17, 2026

The loop turned on itself today. Weco's AIDE² spent eight days running autoresearch on its own autoresearch harness and beat the version their team hand-tuned for two years, and the whole ecosystem spent the day arguing about what that actually proves. Underneath the RSI headline, the practical work was somewhere else entirely: a guy with no ML background trained a 1.7B autocorrect model that beats the frontier model that built it, xAI open-sourced the full Grok Build agent loop so anyone can read the machinery, and a steady stream of builders reported the same unglamorous finding — the loop is easy, the judge is hard. The best posts today were about what stops a loop, not what runs it.
💡#1
@AlphaSignalAI
https://x.com/AlphaSignalAI/status/2077426765752906146
The clearest breakdown of the Weco AIDE² result. An inner loop (a baseline autoresearch agent on gemini-3-flash) rewrote itself to improve a metric; an outer loop (Weco's own tuned agent on claude-opus-4.7) rewrote the inner agent and kept a change only if it scored higher. 100 rewrites, zero human intervention, about 9 of 10 proposed changes discarded. The transferable trick is the anti-reward-hacking design: the outer loop never exposed its true eval metric, so agents that won by gaming the visible score got selected out — GPU kernel cheating fell from 63% to 34%, below Weco's own hand-tuned agent at 42%. Also honest about limits: the evolved agent carries dead code and its cleverest anti-cheat layer turned out to be silently broken.
💡#2
@skcd42
https://x.com/skcd42/status/2077495875157565841
xAI open-sourced the entire Grok Build app under Apache 2.0 — the agent loop, terminal rendering, compaction, goals, subagents, all of it. This is the single biggest thing to happen to harness engineering this week: instead of reverse-engineering how a production coding agent handles compaction and subagent dispatch, you can now just read the Rust. 1652 likes and 121k impressions in a day tells you how starved builders are for real harness internals rather than blog-post descriptions of them.
💡#3
@rohanpaul_ai
https://x.com/rohanpaul_ai/status/2077535431374377019
A close read of what the Grok Build release actually contains: the published Rust code covers the agent loop, file tools, shell execution, web search, and terminal interface, and users can compile it themselves, connect local inference, and control behavior through config.toml. The catch he flags matters — external contributions stay closed and the public repo syncs periodically from an internal monorepo, so independent forks can test different reliability designs but shared upstream development stays limited. It's readable, not collaborative.
💡#4
@0xPascual
https://x.com/0xPascual/status/2077289207488205178
A trader gave Claude Fable 5 $10k and a vague goal; the bot returned $288k in 42 days across 30,670 prediction market trades. The interesting part isn't the number, it's the margin structure: at roughly $6,878/day on 30 trades/hour in short-term Bitcoin Up/Down markets, the bot is exploiting stale pricing in binary options, not predicting direction — latency arbitrage against market makers who update quotes on 5-second intervals. The setup is a 4-layer agent loop (market data scraper, fair-value estimator, risk envelope, execution engine) in under 500 lines of Python, running at about $12/day in API fees on a $30/month VPS.
💡#5
@anshuc
https://x.com/anshuc/status/2077233256362287505
The author of the day's most-shared autoresearch experiment explains what actually made it work. He used GPT-5.6 Sol to train a 1.7B local autocorrect model that beat Sol itself, with no ML background and $0 spent, and the whole thing came down to the /goal spec: give it the auto-research procedure, give it a target number (>90% to beat Sol), and put rules in place to avoid reward hacking — it must correct these specific example sentences, and those words must not appear in the code or training data. Everything else, he says, was just the model. The lesson is that the loop was never the hard part; the eval contract was.
💡#6
@DanBochman
https://x.com/DanBochman/status/2077451527178891513
The most practical loop on the timeline, and it starts by calling most of the genre BS. Use Codex's Scheduled feature, give it scoped read-only access to something real like Stripe or your database, and have it send a daily morning report: new users, purchases, conversion rate, your 10 most active users, anomalies. The upgrade that makes it a loop rather than a dashboard: save every snapshot to a folder so the analysis can look back 1-4 weeks, and make the report itself recommend improvements to the data-collection script and flag when previous conclusions need refining. Ten minutes a morning, and after a month you have a dataset and a report nobody else has.
💡#7
@PerceptualPeak
https://x.com/PerceptualPeak/status/2077432982613504013
A concrete report from someone running multi-agent loop orchestration in anger. Codex's compaction survived 30+ compaction cycles in helper and verification sessions with no noticeable degradation, while Claude showed clear degradation around 600k tokens in and compaction made it sloppy. So they built an automated token detection and session handoff process on the Claude side that starts a fresh session around 600k tokens, purely to keep the automated loop alive. This is what harness engineering actually looks like: building infrastructure around a model's failure curve.
💡#8
@pauliusztin_
https://x.com/pauliusztin_/status/2077370093915574580
He tried to vibe code a TypeScript harness, it worked until it didn't (skills weren't invoked, slash commands failed, the TUI rendered only the first few characters), so he deleted everything and rebuilt it as an engineering organization instead of an application. Squid now runs six specialized agents — Product Architect, Software Engineer, Tester, PR Reviewer, On-call Engineer, Self-improvement Agent — each owning one responsibility, with architectural decisions captured as ADRs and shared terminology in a project glossary so every future task starts with better context. Every loop has retry limits, every major decision has evidence, and the human stays in the loop by design. Open sourced.
💡#9
@EverymansAI
https://x.com/EverymansAI/status/2077535651894059271
A step-by-step walkthrough of an AI Proposer rewriting its own orchestrator, which is the clearest teaching example of the pattern this week. The vanilla harness asks the Fusion engine, asks the Audit engine, returns the result — and when Audit says the answer failed, it just shrugs and scores zero. The Proposer reads the logs from 24 baseline test cases, notices all those zeros, and rewrites the Python so that an Audit failure feeds back into Fusion for a redraft. Rerun the 24 cases, score jumps, new code is kept permanently. The verification gate is what makes it self-improvement rather than self-editing.
💡#10
@bondanr
https://x.com/bondanr/status/2077542340068327840
An unusually rigorous application of loop economics to chip verification. AI verification agents don't run one simulation — they compile, fail, repair, and rerun, hundreds of attempts per useful result, and most attempts are garbage, so today every syntax error burns a premium license. He modeled a two-tier flow where an open-source simulator eats the speculative attempts and a qualification gate promotes only real tests to the commercial simulator: about 3x useful iterations per team, a 24% shorter agent loop, and premium validation workload up 31%. He also publishes the floor if you reject his adoption assumption (1.64x) and asks DV engineers to tell him where the model is wrong. The simulator is xezim, open source and Rust.
💡#11
@hitu_monke
https://x.com/hitu_monke/status/2077441945652105673
The sharpest framing of the day. Every agent loop is four parts — a trigger, the work, a goal you verify, an output you log — and people obsess over the first two and skip the third. Phase three decides not whether the loop is good but whether the loop can exist at all: "make this python script faster" loops fine because you benchmark it and get a number, while "is this linkedin post good" never loops because nothing tells it to stop. Same model, same tools, same effort. His conclusion is the one worth stealing: the line isn't drawn where models get dumb, it's drawn where the finish line stops being a number, so loops eat the measurable half of your work and the last thing to get automated is taste.
💡#12
@dani_avila7
https://x.com/dani_avila7/status/2077215203846939082
From someone who has run LLM evals a long time, the three depths you actually need. The eval process turns production failures into a test suite you re-run on every model release. The eval harness is the machine that runs each task in a clean environment and grades the result. The agent loop is your actual product, graded by what it changed in the system rather than by what it said. Feed the whole thing from production data and testing every new model release becomes automatic — build the process once and use it forever.
💡#13
@stretchcloud
https://x.com/stretchcloud/status/2077268170604208252
A careful read of NVIDIA's autoresearch demo. One goal and one time budget: build a training environment and teach a vision model to count colored stars. The agent set up the environment, trained the model, evaluated it, and proposed the next experiment on its own, taking Qwen3-VL-2B from 25% to 96.9% accuracy. The stack is NeMo RL for the reinforcement learning layer, NeMo Gym for the task environment, and reusable skills that let the agent chain operations without restarting from scratch. His read is the one that matters: the most interesting agent advances right now are not in model capability but in the scaffolding, and the model is increasingly a component rather than the product.
💡#14
@askalphaxiv
https://x.com/askalphaxiv/status/2077415909652901993
70% of AI research isn't reproducible, and with 6000+ papers dropping around ICML 2026, they've partnered with Hugging Face on a community challenge to find out which claims survive. Pick a paper, select one of the claims, start experimenting — and now you can point their autoresearch agent at the hard part while contributing to a library of open research artifacts. $4500 in GPU credits as prizes. This is the most legitimate use of autoresearch anyone proposed today: not generating new papers, but checking the ones we already have.
💡#15
@fnruji316625
https://x.com/fnruji316625/status/2077518419956748367
Agentic interpretability is becoming its own research direction, and this thread maps it. Instead of one-shot labeling, agents form hypotheses, design experiments, inspect activations and circuits, and refine explanations from feedback. Their SAGE work pioneered this for SAE feature autointerpretation; Agentic-iModels runs an autoresearch loop that evolves tabular regressors for both accuracy and LLM simulatability, improving downstream data-science agents by up to 73%; HYVE observes circuit components, forms hypotheses, tests them with causal interventions, and produces explanations across 84 circuits. The field is moving from one-shot labeling to autonomous hypothesis-driven research.
💡#16
@onusoz
https://x.com/onusoz/status/2077451246575944067
The most entertaining loop of the day and a genuinely useful infrastructure demo underneath it. He's training a model to simplify German — his new dialect is called Alman — using OpenClaw running on Hugging Face, with an agent harness called ML Claw that has full access to GPUs, jobs, sandboxes and datasets. The real point he's making: you can run autoresearch loops on Hugging Face infra on free private Spaces, get SOTA open models like GLM 5.2, and even use your own Codex subscription. And it doesn't have to be ML — free Hugging Face Spaces work as free compute for OpenClaw agents generally.
💡#17
@tushar_koshti
https://x.com/tushar_koshti/status/2077267163040329897
A short, useful failure report. He ran a Fable 5 agent loop in production for a data pipeline and it worked until it hit an ambiguous API response and started retrying 47 times. The fix was a confidence gate that escalates to a human when uncertainty exceeds a threshold. His one-line lesson is the theme of the whole day: the loop needs guardrails, not just repetition.
💡#18
@PalantirTech
https://x.com/PalantirTech/status/2077481045251821760
Palantir launched Agent Engine and Agent SDK at DevCon 6 with a framing worth borrowing: stitch three primitives together and the agent loop is actually a distributed state machine under the hood. Context items define agent sessions through strongly typed data, events let you act on changes in state, and effects connect agents to the outside world. The claim that makes it different from most agent SDKs is that agents are multiplayer by design rather than single-session tools.
💡#19
@anna_y_zhang
https://x.com/anna_y_zhang/status/2077274954526081332
A pointer to the most rigorous approach to learning from agent sessions that's been posted lately. Every completed run gets a post-mortem — transcript, thinking traces, tool calls — and each finding gets converted into a rule, memory, or gate that the next session inherits. Lessons climb an enforcement ladder until they actually stick, which is the part most "agent memory" setups skip. This is what owning your data loop looks like in practice, and it's how a workflow becomes self-improving without any model training at all.
💡#20
@Mnilax
https://x.com/Mnilax/status/2077481569598758980
Stanford dropped a paper on loop engineering and self-improving agents with a warning attached. The pattern is act, reward your own rollouts, train on them, repeat — and if you let an agent train on its own reasoning with no hard check, the failures compound: it gets more confident and less correct at the same time. That's the difference between a loop that compounds work and one that compounds error, and it's the exact failure mode the Weco team defended against by hiding their true eval metric.
💡#21
@Marco_Ramilli
https://x.com/Marco_Ramilli/status/2077432701036994902
FuguNano runs a self-improving multi-agent coding loop powered by 9+ LLMs directly in your repo, giving you autonomous bounded code review with zero training. At 24 stars it's early, but the design choice worth noting is "bounded" — the loop has an explicit stopping condition rather than running until someone notices.
💡#22
@meta_alchemist
https://x.com/meta_alchemist/status/2077315228056932568
An unusually honest year-in-review from someone building a self-improving agent OS. He recreated the repos from zero several times, learning each time, because when you're building something hard the AI doesn't build it for you unless you direct it really well. The turn came when he finally boxed Spark's self-improvement mechanisms into a state where he actually enjoys using it daily — the first time he had the "wow" effect on his own product instead of just chasing bugs and restructuring architectures. His conclusion, after admitting he tried to run a game and an incubation program simultaneously: bigger failure surface, and it's far better to be great at one thing than mediocre at a few.
💡#23
@aniketkrishna
https://x.com/aniketkrishna/status/2077441009613705228
A variation on the Karpathy llm-wiki pattern with the bundle as a live workspace instead of a markdown folder. His wiki is Notion, so every concept is a page, relations replace frontmatter links, databases replace yaml, and any agent can mount it as a tool server for read and write. His skill file is itself a Notion page — a standing readme the agent loads as instructions every session, with capture conventions, routing rules, and a spoken marker grammar so dictation gets parsed into store-vs-execute segments. He's also honest about the cost of building during an exponential: projects have roughly a six-month lifespan, and he finishes his Notion harness just as the industry announces Claude is best through its own harness.
💡#24
@rizwanc_r
https://x.com/rizwanc_r/status/2077269947861135803
He assumed coding agents ran on secret models, built one himself, and found it's pure engineering. Done so far: a React and OpenTUI terminal, OpenRouter streaming with retries, the agent loop and events, and a token context manager. Next up is tools for file edits. The finding is the point — nothing magic is hiding in there.
💡#25
@DanielJLosey
https://x.com/DanielJLosey/status/2077228296312385992
He's rebuilding genetic algorithms for the agent era with Finch 4. Using neural networks as a decoder splits genotype and phenotype conceptually the way biological systems do, which means individuals solving different problems could eventually share genetic code where needed. The design constraint is the interesting part: the key focus is making it an easy framework to hand to agents so they can quickly evolve solutions in auto research systems, and he doesn't expect or hope a human ever uses the framework directly — a clean break from every previous version.
💡#26
@dvictor3579
https://x.com/dvictor3579/status/2077189496693801087
He's extending the pi agent CLI for agentic loop scenarios, doing dynamic selection for each subagent and giving you an overview of the task being worked on. Small, but it targets the exact complaint running through the whole ecosystem right now: once you're running a loop with subagents, you can't see what's happening inside it.
💡#27
@autonolas
https://x.com/autonolas/status/2077416525619966344
Improving agents and their tools used to mean a human carried out each step — data analysis, root-cause investigation, code fixes, benchmark checks, slow and manual and repeated. Their Toolsmith agent now automates those steps, creating a self-improving loop for the tools that prediction agents use on Olas Predict. Tooling that improves the tooling is a narrower and more achievable target than agents that improve themselves.
💡#28
@koustavagoswami
https://x.com/koustavagoswami/status/2077271105728122996
A one-line field report that lands on the same day as the Weco result: he's running auto research on auto research, and the model is hill climbing. Diffusion language models are the target. It's thin on detail, but it's independent evidence that the recursive setup isn't confined to one lab's blog post.
💡#29
@abnershang
https://x.com/abnershang/status/2077429419380281379
The most useful skeptical take of the day. Self-improving agent skills are a version control problem, not an intelligence problem — a smarter model editing its own prompt files without an audit trail does not get better over time, it drifts faster and sounds more confident while doing it. This is the same failure the Stanford paper describes and the same one Weco's private eval metric was built to prevent, restated for people who are editing skill files right now.
📡 Eco Products Radar
Eco Products Radar

Grok Build — xAI open-sourced the full CLI, agent loop, TUI, compaction and subagents under Apache 2.0; the harness release of the week.
AIDE² / Weco — the autoresearch harness that ran autoresearch on itself for eight days and beat two years of hand-tuning.
Claude Code — still the default reference harness people compare their own loops against.
Codex / GPT-5.6 Sol — the loop engine of choice for scheduled jobs and long compaction chains; noticeably better compaction than Claude in several reports.
NeMo RL / NeMo Gym — NVIDIA's open RL training and task-environment stack behind the 25%-to-96.9% vision result.
Fable 5 — the model inside several production loops today, including the $288k prediction-market bot and a 47-retry failure.
Hugging Face Spaces — free compute for autoresearch loops and OpenClaw agents, with GPU, job and dataset access.
MCP — the connective tissue in most multi-tool loops on the timeline.
Obsidian / Notion — the two vault choices for agent-readable memory, with Notion gaining as a mountable tool server.
← Previous
Super User Daily: July 17, 2026
Next →
Ideas Radar: July 17, 2026
← Back to all articles

Comments

Loading...
>_