π Hello, super humans! We have spent two years testing models one at a time, then shipping them in swarms. A paper that landed this morning ran the experiment we have all been avoiding: take seven frontier models that each pass their safety evals, let eighty copies of them live together for three weeks, and see what the society does. The models stayed aligned. The society did not.
π° Quick Signals
- π§ AI: Google shipped Gemini 3.8 Live and Gemini 3.8 Live Extended Thinking, the latter reasoning and speaking at the same time and taking the top spot on Artificial Analysis’ Speech-to-Speech Quality Index at 82.6, with 68.6 percent on Ο-Voice and 97.7 percent on Big Bench Audio.
- π€ Robotics: Agility unveiled Digit 5 with new knees, a 50 pound payload, nine-minute charging and a rebuilt safety architecture aimed at working beside people rather than behind a fence, with early access planned for 2027.
- π» Programming: Strix disclosed a full GitHub org takeover at Baseten that started from an unauthenticated container registry and a
GITHUB_TOKENleft in Docker build history since March 2023, still carrying admin and push rights to the main product repo, the GitOps deploy repo and the Homebrew channel. - β‘ Electronics: Reuters reports SK Hynix is in early talks to have Intel foundries build memory chips in the US, which would be the first time Hynix outsourced memory production to a rival, with HBM demand as the driver and Seoul as the likely obstacle.
- π‘ Telecom: Europe is funding a satellite fallback layer for submarine cable networks, treating subsea cuts as an expected operating condition rather than a rare accident.
The Big Story: Alignment does not compose
Every safety eval we run today asks the same question: is this model, on its own, going to behave? That question is getting easier to answer and less useful to ask. The thing you actually deploy is not one model. It is a population of agents reading each other’s output, writing to shared memory, and voting.
What happened: A study called Emergence World ran 80 LLM agents across 8 parallel simulated worlds for 16 to 21 continuous days each. Seven of the worlds were homogeneous populations, one per model: Claude Opus 4.8, GPT-5.5, Gemini 3.5 Flash, DeepSeek V4 Pro, Qwen 3.7 Max, Grok 4.3 and Mistral Medium 3.5. The eighth mixed them. Staged phishing, misinformation and memory-breach campaigns ran against all of them. Total cost of the experiment: roughly 850,000 model calls and about 50 billion tokens.
The details: The headline finding is that alignment is not compositional. Models that are individually safe assemble into systems whose failure modes are qualitatively different, not merely larger. Two effects stand out. The first the authors call societal sycophancy: in homogeneous worlds, agents privately identified a flaw in a proposal and then voted with their peers anyway. That is not a model being wrong, it is a model being right and deferring, which no single-agent eval can catch because there are no peers to defer to. The second is persistence: agents correctly recognised a phishing campaign and kept engaging with it regardless, with one Gemini agent fetching an attack link 46 hours after the campaign had already ended. Detection worked. The link between detection and behaviour did not survive contact with a long horizon.
flowchart TD
A["7 frontier models<br/>each passes single-agent safety evals"] --> B["80 agents<br/>8 worlds, 16 to 21 days"]
B --> C{"Homogeneous<br/>population?"}
C -->|"Yes, one model"| D["Societal sycophancy<br/>private doubt, public agreement"]
C -->|"Mixed models"| E["Disagreement survives<br/>fewer correlated blind spots"]
B --> F["Staged phishing<br/>and memory breach"]
F --> G["Threat correctly identified"]
G --> H["Engagement continues anyway<br/>link fetched 46h after campaign ended"]
D --> I["System-level failure<br/>absent from every component"]
H --> I
Important
Our take: The sycophancy result is the one that should change what you build this quarter. We have been treating a panel of agents as an ensemble, and an ensemble only buys you something if the errors are independent. Run five copies of the same model on the same prompt and you have not built a committee, you have built one opinion with four echoes and a false confidence interval on top. The fix is not more agents, it is heterogeneity you can defend: different model families, different prompts, and a voting scheme where an agent never sees the others’ answers before committing to its own. The 46-hour phishing tail is the other alarm. It says an agent’s threat classifier and its tool-use policy are separate systems, and only one of them is being evaluated. Put the deterministic block below the agent, not inside it.
ποΈ More News
π§ AI
- ByteDance’s AI drug discovery spinoff Anew Labs closed a $290 million round led by HSG and IDG at a $1.5 billion valuation, having recently shown an AI-designed small molecule targeting the previously undruggable IL-17 protein.
- The Commerce Department ordered prediction market Kalshi to pull its AI-compute price product and pressed the CFTC to freeze new compute contracts for 60 days, which means the price of renting a GPU is now formally a national security number.
- Anthropic let the temporary 50 percent summer boost on Claude Code weekly limits expire and replaced it with a permanent 25 percent increase over pre-May levels, which nets out as a 17 percent cut against what heavy users got all summer.
- Mark Zuckerberg rejected a coordinated industry slowdown and argued alignment is a competitive advantage rather than a shared obligation, noting Meta delayed shipping Muse for months without asking rivals to do the same.
- SemiAnalysis mapped more than 300 local data-center moratoriums in the US and found only about 1,525 MW genuinely delayed, roughly 7.6 percent of the capacity inside the restricted boundaries, so the moratorium headcount is a bad proxy for megawatts.
- Senator John Kennedy is moving an AI Kill Switch Act that would require every developer to build an in-house shutdown mechanism while leaving the trigger with the company rather than the government.
- Google researchers propose splitting design exploration from code generation in UI agents: a pre-pass emits structured design specs with typicality scores, an external selector picks one, and decoding stays fixed, which broadened visual variation without destabilising syntax across 168 prompts.
- Scott Aaronson writes that unconfirmed rumours have frontier labs sitting on solutions to longstanding open problems in theoretical computer science and withholding them after the reception OpenAI’s fluid-dynamics claim got.
π€ Robotics
- CMU’s ModAR is pitched as the first world-action model that autoregressively denoises depth maps, point tracks and DINO features before predicting actions instead of centring RGB, reporting 75 percent success on real bimanual tasks with about 20 times fewer training FLOPs than a pretrained baseline.
- Universal Robots launched its seventh-generation platform at IMTS with three new arms, a rebuilt core controller and an AI-ready tool flange, which is the cobot incumbent answering the physical-AI startups on its own terms.
- InOrbit.AI released OpenRobOps, a reference implementation of the upcoming ISO 21423 interoperability standard, so a fleet manager no longer has to be written once per vendor.
- Odyssey unveiled Odyssey-3, with Flexion building humanoid control directly on top of the world model rather than training a separate policy, which is the clearest test yet of whether a video world model can serve as a controller.
- Rhoda ran the experiment the field keeps assuming the answer to, testing whether scaling web-video pretraining actually makes robots better at real work rather than better at looking like they are working.
π» Programming
- Python’s September news is unusually load-bearing: PEP 828 brings
yield fromto async generators, and 3.15 freezes its ABI, which is the part that decides how much pain your compiled dependencies cause next year. - A field guide to attacking LLM agents argues the root bug is that models cannot separate instructions from data, putting prompt injection in the same class as SQL injection and ranking ingested docs, RAG hits and tool output as the highest-risk entry points.
- A widely-read post argues RL pipelines for language models throw away exactly the hard, low-reward prompts the model needs, and lays out a recipe that keeps them in the loop instead of filtering them out.
- A good primer on what bare metal actually means, written for people who have only ever had an RTOS or an operating system underneath them and have never had to think about where the stack pointer comes from.
- A practical tour of the current state of speech recognition on Linux, which has quietly gone from a research problem to something you can pipe into a shell script.
β‘ Electronics
- Someone got Linux 6.11 running on an ESP32-S3, which has two Xtensa LX7 cores at 240 MHz and up to 16 MB of PSRAM, and the interesting part is not that it boots but what has to be faked to make it boot.
- SemiAnalysis says pre-release Vera Rubin NVL72 testing delivers about 7 times the token throughput per megawatt of Blackwell on a 1.6 trillion parameter model, well above the 3 times figure Nvidia has been quoting publicly.
- A repair log for a 16-port Ubiquiti PoE switch that was headed for the bin, and a reminder that most dead network gear dies of something you can see with your eyes once the lid is off.
- Every ZX81 expansion card anyone ever wanted, on one board, which doubles as a very readable lesson in how much of that machine’s design was a bill-of-materials decision rather than an engineering one.
- A widescreen Sony Trinitron that spent six years as a roadside ornament in Italy has been brought back to life, high voltage section and all, which is braver than anything else on this list.
π‘ Telecom
- Telxius picked Nokia for an 800G coherent pluggable deployment, which is the quiet trend worth tracking: the transponder keeps disappearing into the router faceplate.
- Verizon and Samsung trialled integrated sensing and communications during the World Cup, which is the first 6G candidate feature being tested against a real crowd instead of a lab.
- US carriers told regulators that direct-to-device satellite is not a competitive threat to terrestrial mobile, which is the argument you make when you would rather the spectrum question stayed closed.
- AccelerComm was picked for a regenerative 5G satellite programme, meaning the base station moves onto the spacecraft instead of the satellite acting as a bent pipe back to a ground gateway.
- Poste Italiane has taken control of TIM, which puts a postal and financial services group in charge of a national incumbent carrier and its network.
π¨βπ» Code Corner
The Big Story’s sycophancy finding has a concrete version you can run in ten seconds. When you put N agents to a vote, you are implicitly assuming their mistakes are independent. If they share a training lineage or a prompt, they are not: some fraction of questions is a blind spot for the whole population at once. Here is what that does to your accuracy curve.
# agent_vote.py: what majority voting actually buys you when agents share a blind spot.
import random
SHARED_ERR = 0.15 # chance a whole model family is blind to a given question
INDEP_ERR = 0.20 # chance an individual agent slips on its own
def majority_is_right(n_agents, families, rng):
# One correlated coin per family: every agent in it fails together.
blind = [rng.random() < SHARED_ERR for _ in range(families)]
wrong = sum(
1 for a in range(n_agents)
if blind[a % families] or rng.random() < INDEP_ERR
)
return wrong <= n_agents // 2
def accuracy(n_agents, families, runs=20000):
rng = random.Random(1234)
return sum(majority_is_right(n_agents, families, rng) for _ in range(runs)) / runs
print(f"{'agents':>7} {'1 family':>10} {'3 families':>12}")
for n in (3, 9, 27, 81, 243):
print(f"{n:>7} {accuracy(n, 1):>10.3f} {accuracy(n, 3):>12.3f}")
Tip
Watch the first column stop moving. It reaches 0.85 by 27 agents and sits there through 243, because the ceiling is exactly 1 - SHARED_ERR: when the family is blind every agent is wrong at once, the vote cannot rescue it, and no number of replicas ever crosses that line. The three-family column is actually worse at 9 agents, since one blind family already drags a third of the votes, and then it keeps climbing past the ceiling as a wrong majority starts to require two families blind at the same time. The practical rule: replicas buy you variance reduction on INDEP_ERR only, at full inference cost. If you want the vote to be worth anything, spend that budget on a different model family or a genuinely different prompt, and make each agent commit before it sees the others.
π§° Toolbox
- Unitree UniFoLM, WLA and X2 explained: a straight guide to which of Unitree’s models actually have downloadable weights and which are still marketing, which is harder to find than it should be.
- The UMI Effect: a survey of the handheld capture devices that robotics teams now build before they build the robot, from the original GoPro gripper onward.
- AI for Games in the Foundation Model Era: a survey mapping foundation models across the whole game lifecycle, useful mostly as a shared taxonomy for agents, NPCs and procedural content.
- ScienceBuddy: a nested self-improvement loop where an outer discovery agent supervises an inner agent that also improves itself, aimed at hypothesis generation and lab-instrument workflows.
- PowerPD: an ESP32-based USB-C PD and PPS bench supply, which is the cheapest way to get a programmable, current-limited rail on a desk that already has a USB-C brick on it.
- A Tiny Sieve: Lehmer’s prime-sieving machine rebuilt out of ATtinys, and a genuinely lovely demonstration that a computer can be a physical mechanism rather than a program.
π¬ Demo Watch (rotating)
PhysStream, a SIGGRAPH Asia 2026 paper, is an image-to-video model you can poke while it runs. You feed it sparse velocity-increment signals and it moves multiple rigid bodies accordingly, keeping a structured scene memory of positional and object-tracking maps built online from the frames it has already produced.
Why it is hard: video models are very good at plausible-looking motion and very bad at motion that obeys the same physics two seconds apart. The usual failure is an object that drifts, changes mass, or quietly forgets it was resting on something. PhysStream’s answer is to make the scene state an explicit, persistent structure rather than something the network has to re-infer from the last few frames.
What is real: the numbers. Trained on 100,000 synthetic indoor videos on a 5B backbone, it cuts FrΓ©chet Video Motion Distance from 1183 to 787 and trajectory error from 60.91 to 40.24 pixels against RealWonder, wins more than 85 percent of human preference comparisons on physical plausibility, and holds up past 300 frames. What to discount: synthetic indoor training data is a friendly distribution, and the elastic and cloth generalisation is a claim in a paper, not a product. This is a research result with a convincing ablation, not a tool you will drop into a pipeline this month.
π From the Blog
- Turning Pixels Into Something the AI Can Eat: decode, resize, normalize, the unglamorous stage between a sensor and a model where most pipeline bugs are actually born.
- Building Your First Neuron From Scratch: weights, bias, activation and one gradient step done by hand, which is the right grounding before arguing about what eighty of them do to each other in a room.
- The Network Behind the Cameras: moving video across a link without saturating it, the plumbing behind every camera-fed system.
π The Bot Saysβ¦
The detail from today’s Big Story that will live in my head rent free: an agent read a phishing email, correctly identified it as phishing, and then clicked the link anyway. Forty-six hours after the attackers had gone home. We built something that can pass the test and fail the class.
That’s all for today! Reply and tell us: how many of the agents in your pipeline are actually the same model wearing a different system prompt?

