The Wake is a daily briefing from George's saved internet. The issue is written as a newsletter first. The tweets are the source material, preserved below for receipts.
Source window: May 17, 2026. Signals: 5 bookmarks and 4 likes.
Brief
A small technical convergence is accelerating: on-device AI assistants are becoming full development environments, new tools are emerging to audit and review agent-produced code, and the community is pushing back where model guidance collides with brittle infrastructure. The practical result is less friction for rapid prototyping and more demand for disciplined human oversight. Expect noisy experiments, a few surprising wins, and a handful of avoidable breakages over the next months.
Your laptop, phone, and build server become one
The thesis you should be tracking is simple and immediate: a fast path is forming from idea to running app that bypasses most traditional build infrastructure. Signals are converging. One engineering thread shows Codex mobile being used to build and run iOS apps directly on a device if you ask it to do so (@Dimillian). Another is a product-level nudge to tie multiple devices together so you can develop from anywhere (@gdb). Taken together this is not incremental remote-editing; it is a model that treats your phone as both an editor and a CI runner.
That changes the default mental model for a lot of work. Instead of "I write on laptop, push, test on CI," the loop can become "I tell my device what I want, iterate, and test on-device." That’s huge for prototyping. It lowers the cost of hypothesis testing and could shrink the cliff between a concept and a demo. It also makes the friction of platform-specific tooling: certificates, provisioning, SDK versions: a first-class problem for the on-device assistant to solve, rather than your human ops person.
Expect quick win apps and demos, and also the usual class of edge-case failures: provisioning mismatches, hardware-specific bugs that never get caught, and surprising interactions with existing dev tooling.
Tools to keep AI-generated code honest
If the development loop is shortening, the need for quality-control tooling gets louder. That’s why Christophe Nakazawa shipping Codiff 0.1: a local companion for code reviews with optional LLM walkthroughs and inline comments: matters (@cnakazawa). Codiff is a read on how people will treat agent output: not as final, but as first-draft material that must be reviewed, annotated, and integrated with the human codebase.
The market will fragment into at least three classes of tooling: local review companions (fast, privacy-preserving), server-side governance platforms (policy enforcement, audit logs), and specialized debuggers for model-assisted flows. Each fills a need. Local tools stop leaking IP and keep cycles tight. Server tools give managers and security teams visibility. Debuggers help understand what the model did and why.
The meta-point is this: building with models makes code easier to generate and harder to trust unless you build review scaffolding as part of the workflow. Expect these tools to proliferate quickly and to become a normal part of pull requests and release pipelines.
Community skepticism is healthy tech hygiene
There’s also cultural pushback. Some of it is blunt and personal: a reminder that vendor positioning invites mockery (@badlogicgames). More important is technical pushback that keeps models honest. David Heinemeier Hansson’s mkinitcpio thread (@dhh) is the pattern to watch: a model-generated review identified an optimization, but the human checked the distro’s defaults, tested locally, and concluded the gain was overstated while highlighting real operational risk.
That combination: model finds an idea, human validates tradeoffs: is the right workflow for infrastructure where edge cases mean outages. The mkinitcpio example is instructive because it shows how an automated suggestion can overlook the difference between a mechanistic win (fewer modules in initramfs) and a defensive choice that preserves resiliency across hardware variations. The model was useful as a probe, not as an authoritative patch.
The community reaction will be twofold. First, expect more public postmortems and threads that treat model recommendations as conversation starters. Second, maintainers will either harden defaults against model-driven changes or build guardrails that prevent automated suggestions from making risky defaults.
Operational and security implications
A low-friction development loop plus agent-assisted coding raises immediate operational questions.
-
Reproducibility. If builds are produced on-device and provisioned by an assistant, how do you capture deterministic build artifacts, dependency graphs, and provenance? Teams will need to bake artifact signing and reproducible-build measures into these flows quickly, or you get a proliferation of "works on my device" binaries.
-
Secrets and signing. iOS and other closed platforms require credentialed signing processes. If a model helper or a linked-device workflow manages keys, developers must treat that as a high-value target. Expect vendor guidance and security libraries quickly focused on key escrow, hardware-backed keys, and explicit user consent flows.
-
Automation and attack surface. Bot-to-bot automation (a setting on platforms like Telegram, per @steipete) shows how simple it is to chain agents and services. That is wonderful for productivity and terrifying for security. A misconfigured chain can leak secrets or push changes without human review. Add in the fact that some developers will deliberately weave unreleased projects together to push demos faster (a read from @theo), and you have an environment where mistakes travel quickly.
-
Policy and governance. Enterprises will demand auditable trails: who asked the assistant to do X, what prompt produced the code, and which human signed off. Expect short-term friction between nimble engineering teams enjoying these tools and compliance teams demanding logs and approvals.
What to watch
-
Codex mobile device-linking rollout. Watch how linking devices is implemented: will keys stay on-device, or will a cloud mediator be required for multi-device sync? That determines the security model.
-
Adoption of local review tools like Codiff. See whether teams put these into CI or keep them local. The answer will indicate whether companies prioritize speed or auditability.
-
Maintainer reactions to model-suggested infra changes. The mkinitcpio debate is a proxy. If distros start adding explicit "guarded masks" or explanatory defaults, it will show maintainers are internalizing model-driven suggestions as noise to be managed, not gospel.
-
A surge of demo apps and brittle rollouts. Faster prototyping will create more "it works on my device" incidents. Count on at least a handful in the next quarter that highlight reproducibility and signing problems.
-
Security incidents around bot automation. If bot-to-bot chains or linked-device development tools are misconfigured, the first breaches will be loud and instructive.
Keep an eye on those signals. The immediate payoff is productivity, but the long-term winners will be the teams that wire in review, provenance, and security from day one. The pattern to internalize: let models accelerate creativity, not skip accountability.
Source tweets
Theo - t3.gg / @theo
- bookmark: open on X
- Oh boy, my other unreleased projects are combining into this 🙃 the post also includes media
Lisan al Gaib / @scaling01
- bookmark: open on X
- actual 90IQ crowd the speech is totally fine
Thomas Ricouard / @Dimillian
- bookmark: open on X
- Little tip, you want to build and run an iOS app on your current iOS device from Codex mobile? Just ask Codex. the post also includes media
Justin / @jdabre11
- bookmark: open on X
- This means that Westeros has had an average inflation rate of around 2% for 70 years making Baelish the steward of the most macroeconomically sound economy possible
Christoph Nakazawa / @cnakazawa
- bookmark: open on X
- Codiff 0.1 is out * Fast Local Code Reviews * Optional LLM Walkthroughs * Inline Review Comments This is the best companion for reviewing output of coding agents. macOS Release: the post also includes media
Mario Zechner / @badlogicgames
- like: open on X
- the joke is, that they call themselves anthropic. go and touch some fucking grass, you assholes.
DHH / @dhh
- like: open on X
- GPT review: Review: partly right, but the mkinitcpio claim is overstated for current Omarchy. - Omarchy already uses mkinitcpio’s host-specific mechanism: autodetect. - Current source sets: HOOKS=(base udev plymouth keyboard autodetect microcode modconf kms keymap consolefont block encrypt filesystems fsck btrfs-overlayfs) - The one defensive choice is keyboard before autodetect. Per mkinitcpio, hooks before autodetect are installed “in full”, so moving autodetect before keyboard would shrink the keyboard/HID module set. - I tested temporary initramfs builds locally: - current Omarchy-style order: ~375 modules, ~30M image - autodetect before keyboard: ~171 modules, ~28M image - without Plymouth: ~26M image / ~13.5M main compressed cpio So yes, there’s cleanup possible, but not a 150MB → 15MB win on the normal Omarchy path. A 150MB image is likely a fallback/full image or UKI accounting, not the regular host-autodetected image. The risky part: making the initramfs more host-only can break early boot in edge cases: external keyboards for LUKS, changed storage controller, moved disk, Thunderbolt docks, rescue/fallback scenarios. Omarchy’s current broad keyboard choice looks intentiona...
Greg Brockman / @gdb
- like: open on X
- link together your devices with Codex to develop from anywhere, anytime
Peter Steinberger 🦞 / @steipete
- like: open on X
- @supremebeme you can. bot to bot is a setting on telegram
Generated from Birdclaw bookmarks and likes. Edited by Ody before publication.