AI Digest.

OpenAI Launches Codex App as SpaceX Acquires xAI and Multi-Agent Workflows Hit Mainstream

OpenAI's Codex app launch dominated the conversation with Sam Altman admitting AI made him "feel useless," while a CTO's public migration from Copilot to Cursor to Claude Code in under a year crystallized just how fast the AI IDE market is moving. Meanwhile, a push to standardize agent skills under `.agents/skills/` signaled the ecosystem maturing beyond single-tool silos, and SpaceX quietly acquired xAI.

Daily Wrap-Up

The biggest story today was the launch of OpenAI's Codex app, a dedicated workspace for managing multiple coding agents in parallel. But what made it memorable wasn't the product specs. It was @sama admitting that after building with Codex and asking it for feature ideas, "at least a couple of them were better than I was thinking of. I felt a little useless and it was sad." When the CEO of the company building the thing feels displaced by the thing, you know the ground is shifting under everyone's feet. The Codex launch also came with doubled rate limits across all paid plans, which is the kind of aggressive move that signals OpenAI sees the AI coding space as an existential battleground.

What made today's feed especially interesting was how it captured the full spectrum of reactions to this moment. On one end, @GergelyOrosz reported a CTO at a 600-engineer company describing their tool migration: GitHub Copilot to Cursor nine months ago, then Claude Code just 1.5 weeks ago, with Copilot cancelled entirely. That's the entire product lifecycle of an AI coding tool compressed into less than a year. On the other end, @alexhillman articulated a counter-position: not everyone should be building factories optimized for output and scale. Some developers are choosing depth and understanding over speed, maintaining open loops and low error tolerance with more human input, not less. Both approaches are valid, but the tension between them is going to define how teams ship software in 2026.

The quieter but potentially more impactful story was @embirico's open call for agent builders to standardize on .agents/skills/ as the shared directory for agent skill definitions, with Codex already making the move. If that convention sticks across Claude Code, Cursor, and the growing crop of open-source alternatives, it would be the first real interoperability standard in agentic coding. The most practical takeaway for developers: start organizing your project-level agent instructions under .agents/skills/ now. Whether you're on Codex, Claude Code, or Cursor, that directory convention is converging fast, and having your automation portable across tools will matter more than which IDE you pick this quarter.

Quick Hits

  • @SpaceX announced the acquisition of xAI, forming what they called "one of the most ambitious, vertically integrated innovation engines on (and off) Earth." Rockets meet reasoning.
  • @rough__sea reacted to projections of terawatts of AI compute launched annually, asking "Is this how von Neumann probes start?" Fair question.
  • @argosaki posted about researchers implanting procedural memories via transcranial magnetic stimulation, claiming piano novices played intermediate pieces after 20 minutes. File this one firmly under "extraordinary claims requiring extraordinary evidence."
  • @PalmerLuckey discovered a team in the AI Grand Prix using cultured mouse brain cells to control a drone. His verdict: "At first look, this seems against the spirit of the software-only rules. On second thought, hell yeah."
  • @Google highlighted using AI tools to sequence animal genomes in days, work that once took 13 years and $3 billion for a single human genome.
  • @jamesvclements built a tool that adds before-and-after screenshots to all PRs, which is the kind of small automation that compounds into massive review quality improvements.
  • @thdxr announced a beta channel for opencode with SQLite migration testing. The open-source AI coding tool space keeps growing.
  • @badlogicgames declared "pi is now a certified game engine," adding another unexpected use case to the AI coding tool landscape.
  • @aliasaria launched the public beta of Transformer Lab for Teams, positioning it as "the open-source OS for modern AI research."
  • @GOROman shared a workflow combining Moshi, Mosh, tmux, and Tailscale for remote AI development. The tool-stacking meta continues.
  • @nummanali called for an open-source version of 8090, an AI-native SDLC platform for cross-functional collaboration.
  • @doodlestein's Agent Flywheel Hub Discord hit 339 members, a growing community for developers swapping agent workflows.
  • @marty posted a meme about every tech person working on their @openclaw "productivity" system, which hit a little too close to home for the homelab crowd.

The Codex App Launch and the AI IDE Arms Race

OpenAI shipped its most direct challenge to Claude Code and Cursor today with the Codex app, a standalone workspace designed around managing multiple agents in parallel across long-running tasks. @OpenAIDevs described it as "a command center for building with agents," and the framing is deliberate. This isn't a code completion tool or an inline assistant. It's a workbench that assumes you're orchestrating, not typing.

The immediate community reaction was enthusiastic but revealing. @theo called it "OpenAI's Cursor killer" after a week of access, saying he's "addicted." @polynoamial confirmed switching entirely: "Codex is writing all my code these days, and I've fully switched to using the Codex app." And @heccbrent, who worked on the launch internally, shared that he'd turned Codex into "a fairly competent video editor" that can make rough cuts in Adobe Premiere Pro, pushing the boundaries of what a coding agent even means.

But the most telling data point came from outside OpenAI. @GergelyOrosz shared a CTO's timeline: all developers on GitHub Copilot, then Cursor rolled out nine months ago, then Claude Code deployed to everyone 1.5 weeks ago with Copilot cancelled. "I hear this exact transition story, a LOT!" he added. The AI coding tool market isn't just competitive; it's experiencing churn rates that would terrify any SaaS company. @flaviocopes piled on with praise for what appears to be the new Codex feature set: "incredible automations, easy to use/create skills, workflow Conductor, integrate external IDEs."

@sama celebrated the launch by doubling rate limits on paid plans for two months and adding free/go tier access. But his more candid post was the one that stuck: building with Codex was fun until the AI started generating better feature ideas than he could. @kimmonismus connected the dots: "We got Codex that builds itself and Claude that's being built with Claude. In what way haven't we reached the point of self-improving models?" As @alexalbert__ noted simply, "It's only been one year since vibe coding was coined." The distance between that coinage and today's multi-agent orchestration workspaces is staggering. @emollick put it in measured terms: "I think the implications are pretty large for software development, and beyond."

Agent Skills Standardization and the Agent-Readable Web

A quieter but structurally important conversation emerged around making the web and codebases legible to AI agents. @embirico issued an open call to agent builders: "Let's read agent skills from .agents/skills, so people don't have to manage separate folders per agent." Codex has already migrated, and the goal is to deprecate tool-specific directories like .codex/skills. This is the kind of boring infrastructure decision that ends up mattering enormously. If Claude Code, Cursor, Codex, and open-source tools all converge on one directory, agent skills become portable and projects become tool-agnostic.

On the web side, @mintlify improved llms.txt discoverability by placing the index instruction at the top of Markdown responses as a blockquote, "so agents see guidance immediately without having to parse the full document." @michael_chomsky went further, sharing optimization advice for agent-facing content:

> "Always respect 'Accept: text/plain' and 'Accept: text/markdown' headers (most agents don't render JS, biggest win). Let agents know about your llms.txt, otherwise they won't check for it. Keep important context for agents at the top of your files (they tend to truncate)."

The thread connecting these posts is that the agentic web is developing its own SEO. Just as the 2000s web optimized for Googlebot crawlers, the 2026 web is starting to optimize for AI agents that fetch, parse, and act on content. The developers who internalize this shift early will have an outsized advantage in making their tools, docs, and APIs agent-friendly.

Engineering Careers and the AI Productivity Paradox

The career implications of AI coding tools generated the day's most heated takes. @Architect9000 delivered the sharpest framing: "Don't worry about a bunch of software engineers losing their jobs. Worry about what a bunch of unemployed engineers will do to yours." The argument is that engineers are lifelong learners who must master both code and a subject domain, and displaced engineers will simply learn another profession's job and automate it. "Software skills are going to be mandatory for any white-collar job by 2030."

@levie, the Box CEO, tackled the corporate strategy angle. If an engineer can produce 2-5X more output, "the general direction will be roadmap expansion. Companies that just use this leverage to cut costs will be outcompeted by those that decide to do more." But he identified the real bottleneck: customer adoption speed and whether companies can monetize more software or if expectations simply inflate. GTM and distribution moats become critical when development costs per unit drop.

The gap between AI-forward and AI-hesitant organizations was a recurring theme. @vig_xyz captured it perfectly: friends at AI labs are "running multiple Claude Code agents in parallel, sometimes with custom cloud infra," while PE-backed companies are "still figuring out what their first AI initiative should be." @gauthampai confirmed the same pattern from a consulting perspective: some clients are shipping agents, skills, and MCPs like there's no tomorrow while others "still complain how ChatGPT didn't answer their questions right." @vasuman pushed back on the hype cycle with practical advice: "New models are great, but everything that truly moves the needle for your business is already possible. Spend more time studying business needs."

Two Schools of AI-Assisted Development

A philosophical divide crystallized today between what @alexhillman identified as two schools of thought. One school uses AI tools to "build factories" with emphasis on scale, speed, output, and less human input. The other, where alexhillman places himself, emphasizes "depth and understanding, maintaining open loops, low tolerance for errors, MORE human input." @jonhilt noted this mirrors how expertise works in the real world: "You bring all your knowledge, skills and experience to bear on every project. You've packaged some of that up into an AI assistant which now does the same."

@badlogicgames offered the most grounded workflow advice of the day, pushing back against the "run a gazillion things in parallel" productivity hype. "There's likely only a handful of humans that have the mental make-up to survive the permanent context switches," he wrote, describing his own approach of limiting to 2-3 parallel tasks with virtual desktops as task bundles. He uses a pi extension that shows the relevant GitHub issue for each session and maintains a dedicated entertainment desktop for brain rest.

@solarapparition took the long view with a vivid metaphor: "There's a big fucking wave coming. It's higher than any high ground you can reasonably reach. It's advancing too fast for you to build protection. So, just take a deep breath, maybe try to get a clear space so you don't get dashed against rocks, and just let it carry you to wherever you're going to end up." The advice pairs surprisingly well with @TheAhmadOsman's much more tactical tip to "tell Claude Code or any other agent to generate relevant pre-commit hooks for your project" and @leerob's Cursor workflow of stacking skills like /code-review, /simplify, /deslop, and /commit-pr. Whether you're riding the wave philosophically or tactically, the common thread is letting agents handle the mechanical work while you focus on judgment calls that still require a human brain.

Sources

P
Peter Steinberger ๐Ÿฆž @steipete ·
If thereโ€™s anything I can read out of the insane stream of messages I get, itโ€™s that AI psychosis is a thing and needs to be taken serious.
C
Chubbyโ™จ๏ธ @kimmonismus ·
So we got Codex that โ€žbuilds itselfโ€œ and Claude, thatโ€™s being build with Claude. Sorry, but in what way haven't we reached the point of self-improving models? Everything points to it.
T thsottiaux @thsottiaux

Codex now pretty much builds itself, with the help and supervision of a great team. The bottleneck has shifted to being how fast we can help and supervise the outcome.

J
Jon Hilton (@jonhilton.net) @jonhilt ·
@alexhillman What's interesting about this is that it feels like it models the real world. You, as an individual, bring all your knowledge, skills and experience to bear on every project you touch. You've packaged some of that up into an AI assistant which now does the same :)
๐Ÿ“™
๐Ÿ“™ Alex Hillman @alexhillman ·
agreed! I'm starting to think that there's a few different schools of thought when it comes to this wave of AI tools. One is using these tools to build factories. emphasis on scale and speed. optimized for output. eventual consistency. LESS human input and interaction. The space I'm focused on is different, not sure what to call it yet. but by contrast, my emphasis is on depth and understanding. I'm optimizing for maintaining open loops. low tolerance for errors. MORE human input.
J jonhilt @jonhilt

@alexhillman What's interesting about this is that it feels like it models the real world. You, as an individual, bring all your knowledge, skills and experience to bear on every project you touch. You've packaged some of that up into an AI assistant which now does the same :)

M
Mintlify @mintlify ·
We improved llms.txt discoverability for coding agents at the content and HTTP layers. In Markdown responses, the llms.txt index instruction now appears at the top of the page as a clear blockquote, so agents see guidance immediately without having to parse the full document. https://t.co/R8v2u0iaQd
M
Michael @michael_chomsky ·
There is so much SEO/AEO alpha in just pasting this blog into Claude Code and telling it to optimize your project. here's the tldr: -always respect 'Accept: text/plain' and 'Accept: text/markdown' headers (most agents don't render js, biggest win) -let agents know about your llms.txt, otherwise they won't check for it -keep important context for agents at the top of your files (they tend to truncate) -prioritize agents when serving content We're building something absolutely insane for agent SEO next. I really can't wait to share!
M mintlify @mintlify

We improved llms.txt discoverability for coding agents at the content and HTTP layers. In Markdown responses, the llms.txt index instruction now appears at the top of the page as a clear blockquote, so agents see guidance immediately without having to parse the full document. https://t.co/R8v2u0iaQd

A
Alexander Embiricos @embirico ·
๐Ÿ“ฃ Open call to agent builders: Let's read agent skills from `.agents/skills`, so people don't have to manage separate folders per agent. Today we pulled the trigger for Codex to read `.agents/skills`. Goal is to deprecate `.codex/skills`. Pls like/tag/RT for momentum.
F
flavio @flaviocopes ·
Best thing shipped since Claude Code ๐Ÿคฏ - incredible automations - easy to use/create skills - workflow ~ Conductor, awesome - integrate external IDEs - great simple Git - CLI integration - cool diff visualizer w/ change request - run local on on cloud
O OpenAI @OpenAI

Introducing the Codex appโ€”a powerful command center for building with agents. Now available on macOS. https://t.co/HW05s2C9Nr

A
Architect๐Ÿ›ก๏ธ @Architect9000 ·
Don't worry about a bunch of software engineers losing their jobs. Worry about what a bunch of unemployed engineers will do to yours. Engineers are lifelong learners who cannot do their job without learning another specialization in which to apply their craft. Programming isn't like speaking French, it's like building an aqueduct in French. An engineer must be an expert in both coding and the subject of that code. Engineers who get laid off are just going to learn another person's job, automate it 1000x, and take it for themselves. Software skills are going to be mandatory for any white-collar job by 2030. If you work in an office and have no idea how to code, I'd suggest you'd learn like your career depended on it.
G
Gergely Orosz @GergelyOrosz ·
"Earlier, all devs used GitHub Copilot. 9 months ago, we rolled out Cursor to all devs. 1.5 weeks ago, we rolled out Claude Code to everyone, and cancelled our Copilot subscription" - CTO at a company with 600 engineers (I hear this exact "transition" story, a LOT!)
S
Sam Altman @sama ·
To celebrate the launch of the Codex app, we doubled all rate limits for paid plans for 2 months! And added access for free/go.
R
Ryan Dahl @rough__sea ·
Terawatts of AI compute launched each year?? If this becomes real, itโ€™s one of the strangest sci-fi timelines imaginable. Is this how von Neumann probes start?
S SpaceX @SpaceX

SpaceX has acquired xAI, forming one of the most ambitious, vertically integrated innovation engines on (and off) Earth โ†’ https://t.co/3ODfcYnqfg https://t.co/el40rCUBGe

L
Lee Robinson @leerob ·
Cursor tip: before pushing a PR, ask the agent to break your changes into a series of commits for easier review. You can even stack skills like: 1. /code-review 2. /simplify (can we get the same result with less code?) 3. /deslop (remove unnecessary comments) 4. /commit-pr https://t.co/wIyZHDmNQP
A
Ahmad @TheAhmadOsman ·
pro tip: tell claude code or any other agent to generate relevant pre-commit hooks for your project
D
DogeDesigner @cb_doge ·
Elon Muskโ€™s Plan to reach a Kardashev Type II Civilization 1. Move AI off Earth and into space AI needs massive power and cooling. Earth cannot scale this without damaging the environment and society. Space has constant sunlight, natural cooling, and unlimited room. Long term, AI can only scale in space. 2. Use Starship to build orbital AI data centers Using Starship, millions of tons of hardware can be launched every year. SpaceX will deploy huge constellations of satellites that act as solar powered data centers in orbit, generating enormous AI compute with very low operating costs. 3. Make space the cheapest place to run AI Each year, orbital data centers add hundreds of gigawatts of AI compute. Within a few years, training AI in space becomes cheaper than on Earth, unlocking rapid advances in science, engineering, and technology. 4. Expand manufacturing to the Moon Starship enables permanent Moon bases. Factories on the Moon use local resources to build satellites and launch them into deep space far more efficiently than from Earth. 5. Harness the Sun at civilization scale By placing massive AI satellite systems throughout space, humanity begins capturing a meaningful fraction of the Sunโ€™s energy. This marks the transition toward a Kardashev Type II civilization and funds expansion to Mars and beyond.
C
cat @_catwu ·
Claude Code in Slack has changed how quickly we respond to user feedback and ship product improvements We have a user feedback channel where we regularly tag in @Claude to investigate issues and push fixes https://t.co/FP3E0GSR2Q
A
Addy Osmani @addyosmani ·
@forgebitz I use a multi-agent swarm for most of my daily development. This is a future we're planning for more of at Google. What's working is (1) Be very intentional about what requires deep vs. shallow review, a lot of human-in-loop vs. delegation (2) Audit what Skills, MCPs really help
A
Andrei Maxim @rockatanescu ·
@gauthampai @GergelyOrosz Claude Code is an easy choice for businesses because Anthropic offers premium seats for $125/mo with similar limits as the $100/mo consumer plan, making it cheaper than any other alternative. Surprisingly, OpenAI doesn't offer business plans with higher limits.
F
flavio @flaviocopes ·
Been using Docker sandboxes for a while, it's a fantastic way to run agents in YOLO mode without anxiety
D Docker @Docker

For devs asking โ€œhow do I run coding agents without breaking my machine?โ€ Docker Sandboxes are now available. They use isolated microVMs so agents can install packages, run Docker, and modify configs - without touching your host system. Read more โ†’ https://t.co/VjlWMG5wqF https://t.co/7ssqWboten

J
Jukan @jukan05 ·
What? Is it already time for OpenAI to start laying off staff? https://t.co/EufyrtcecK
D damnang2 @damnang2

[๋ฏธ๊ตญ ๋ธ”๋ผ์ธ๋“œ ๊ตฌ๊ธ€ ์ง์›์˜ ๊ธ€ ๋ฒˆ์—ญ] ์ƒ˜ ์•ŒํŠธ๋จผ์˜ ํƒ€์šดํ™€ ๋ฏธํŒ… ์ดํ›„ OpenAI๊ฐ€ ์ธ์›์„ ๊ฐ์ถ•ํ–ˆ๋‹ค๋Š” ์†Œ์‹์„ ๋“ค์—ˆ์Šต๋‹ˆ๋‹ค. ์‹ฌ์ง€์–ด ํŒ€ ๋งค์นญ(Team Match)์ด๋‚˜ ์˜จ์‚ฌ์ดํŠธ ๋ฉด์ ‘(Onsite Loop)์„ ๋งˆ์นœ ํ›„์—๋„ ๋ฆฌํฌ๋ฃจํ„ฐ๋กœ๋ถ€ํ„ฐ ์—ฐ๋ฝ์ด ๋Š๊ฒผ๋‹ค๋Š” ๋ถ„๋“ค์ด ์žˆ๋‹ค๊ณ  ํ•˜๋„ค์š”. ์ด๊ฒƒ์ด ์‚ฌ์‹ค์ธ์ง€, ๊ทธ๋ฆฌ๊ณ  ์ด๋ฏธ ์˜คํผ๋ ˆํ„ฐ์— ์„œ๋ช…ํ•œ ์‚ฌ๋žŒ๋“ค์—๊ฒŒ๋„ ์˜ํ–ฅ์ด ์žˆ์„์ง€ ๊ถ๊ธˆํ•ฉ๋‹ˆ๋‹ค.

N
Naval @naval ·
Vibe coding is the new product management. Training and tuning models is the new coding.
B
banteg @banteg ·
claude boys, ralph boys, it's your time to shine and prove me wrong create a new repo, copy just the two C files from here. they are about 14 days of work worth, they contain the full game decompiled and mapped out, with all the gameplay related functions correctly typed and renamed. you don't have to do the hard part in this assignment. your task is to rewrite the game from scratch from these two files in any other language and engine of your choice and ideally make it run in a browser. share your result, ideally with a writeup of what you have learned and an open source repo. this is a serious peace offering and im genuinely interested. https://t.co/qVEvkVqKPO
C
Chubbyโ™จ๏ธ @kimmonismus ·
Anthropics Image model is live on LMArena. Itโ€™s getting more exciting hour by hour
C chetaslua @chetaslua

So anthropic's cooking an in-house image model sonata is live on lmarena and it's having a whole identity crisis claims google made it half the time, anthropic the other half This is from claude config , so it's 100% guaranteed now it is coming https://t.co/xlYDFWU1BM

L
leo ๐Ÿพ @synthwavedd ·
Looks like Anthropic have soft launched 5 Sonnet on https://t.co/dXPmX3RsI3, or have begun rolling it out Need some other people to go try it out and report back though I do NOT mean it's explicitly available in the model picker - Anthropic have stealth launched models hours before release almost every time
M
Machina @EXM7777 ·
i've said it before and i'll say it again: investing in skills is the best play you can make in 2026... i worked with @lamxnt, who's behind SkillStack, and i already know this guy will nail distribution for this marketplace that means you're making a safe bet by listing skills there as a seller, but also buying from a source that's audited
U useskillstack @useskillstack

We are live. The marketplace to buy high-quality, pre-vetted Claude Skills https://t.co/N7hJjVmsBa https://t.co/LdsTmrFQZd

P
Paul Couvert @itsPaulAi ·
Wow that's super impressive Alibaba Qwen has just released a new coding model which is: - 100% open source - Only 3B active parameters (!!) - Coding performance equivalent to Sonnet 4.5 Comparable to models with 10ร—-20ร— more active parameters. But you can run it LOCALLY ๐Ÿ”ฅ
A Alibaba_Qwen @Alibaba_Qwen

๐Ÿš€ Introducingย Qwen3-Coder-Next, an open-weight LM built for coding agents & local development. Whatโ€™s new: ๐Ÿค– Scaling agentic training:ย 800K verifiable tasks + executable envs ๐Ÿ“ˆ Efficiencyโ€“Performance Tradeoff: achieves strong results on SWE-Bench Pro with 80B total params and 3B active โœจย Supportsย OpenClaw, Qwen Code, Claude Code, web dev, browser use, Cline, etc ๐Ÿค— Hugging Face: https://t.co/rZoW4vRJpr ๐Ÿค– ModelScope: https://t.co/P0vT5zILBZ ๐Ÿ“ Blog: https://t.co/hFfFDYcwvd ๐Ÿ“„ Tech report:ย https://t.co/Qx83PWS3oi

S
Simon Willison @simonw ·
The Unsloth guide implies that this 46GB quantized model can usefully drive a coding agent harness like Claude Code or Codex CLI - I've had trouble running those usefully from other local models that fit in <64GB so if it works this is a really big deal
U UnslothAI @UnslothAI

Qwen releases Qwen3-Coder-Next. ๐Ÿ’œ The new 80B MoE model excels at agentic coding & local use. With 256K context, it delivers similar performance to models with 10-20ร— more active parameters. Run on 46GB RAM or less. Guide: https://t.co/wzoXlZwDuL GGUF: https://t.co/rpYrlnazsm

H
Hasan Toor @hasantoxr ·
China just released a desktop automation agent that runs 100% locally. It can run any desktop app, open files, browse websites, and automate tasks without needing an internet connection. 100% Open-Source. https://t.co/Db1mvbE6TL
W
World Labs @theworldlabs ·
Our world model outputs persistent 3D scenes you can build on top of. Stay as long as you'd like, even if it's more than 60 seconds. https://t.co/lzgENsthFz
L
Lydia Hallie โœจ @lydiahallie ·
Claude Code now supports session sharing! You can share your full conversation with team members, or anyone with the link Available on web, desktop, and the mobile app https://t.co/qW6hfEVQtm
H
Hayden Bleasel @haydenbleasel ·
One command for better AI interfaces, with AI Elements Skills. โ–ฒ ~/ ๐š—๐š™๐šก ๐šœ๐š”๐š’๐š•๐š•๐šœ ๐šŠ๐š๐š ๐šŸ๐šŽ๐š›๐šŒ๐šŽ๐š•/๐šŠ๐š’-๐šŽ๐š•๐šŽ๐š–๐šŽ๐š—๐š๐šœ https://t.co/4VwePGjmO0
C
Claude Code Changelog @ClaudeCodeLog ·
Claude Code 2.1.30 is out. 19 CLI, 1 flag, and 1 prompt changes. Details in thread โ†“
J
Jim Fan @DrJimFan ·
The Second Pre-training Paradigm
D
David Cramer @zeeg ·
Whatโ€™s the best user interface youโ€™ve seen for managing multiple claude code sessions ala Claude web but locally in a UI? I want the navigation of each session and to easily be able to run multiple planning agents etc And I donโ€™t want to DIY this ๐Ÿ˜…
G
George Pu @TheGeorgePu ·
Meta now tracks 200+ data points on employee AI usage. - High adoption = 300% bonus. - Low adoption = managed out. Your employer is next.
G
Guillermo Rauch @rauchg ·
The new engineering is building the agents that "take your job", but now do it at 100x the scale. Agents give developers horizontal scalability. The simple version of this is Ghostty splits and tabs, ๐š๐š–๐šž๐šก sessions and the like, running CLI agents in parallel. Skills and MCPs help you direct the behavior of these agents. Sandboxes give the ultimate leverage: ~infinite parallelism, run while you sleep, on PRs, when an incident is filed, a customer reports an issueโ€ฆ Automating the full product development loop is now your job, and your edge.
N naval @naval

Vibe coding is the new product management. Training and tuning models is the new coding.

M
Mike Krieger @mikeyk ·
Xcode 26.3 launched today with a native integration with the Claude Agent SDK, the same harness that powers Claude Code. Devs get the full power of Claude Code (subagents, background tasks, and plugins) for long-running, autonomous work directly in Xcode ๐Ÿค– https://t.co/vQvE29rWMJ
D
Daniel San @dani_avila7 ·
We saw exactly this in my previous startup RAG + vector DB gives decent results, but agentic search over the repo (glob/grep/read, etc) consistently worked better on real-world codebases. We even pushed further: RAG + embeddings + AST + tree-sitter. The quality was excellent But exactly as @bcherny mentions: staleness and privacy, you need continuous re-indexing, and all the code and embeddings must live on your servers. In practice, fast models + bash-style agentic search ended up outperforming general RAG search, even if it requires more tool calls This is what we built ๐Ÿ‘‡
B bcherny @bcherny

@EthanLipnik ๐Ÿ‘‹ Early versions of Claude Code used RAG + a local vector db, but we found pretty quickly that agentic search generally works better. It is also simpler and doesnโ€™t have the same issues around security, privacy, staleness, and reliability.

L
Lee Robinson @leerob ·
We're adding support for .agents/skills in the next release! This will make it easier to use skills with any coding agent.
C cursor_ai @cursor_ai

Agent Skills are now available in Cursor. Skills let agents discover and run specialized prompts and code. https://t.co/aZcOkRhqw8

A
Anthropic @AnthropicAI ·
Apple's Xcode now has direct integration with the Claude Agent SDK, giving developers the full functionality of Claude Code for building on Apple platforms, from iPhone to Mac to Apple Vision Pro. Read more: https://t.co/fyZ10bhkN3
K
Kareem | Male UGC Creator @nomoreplan_b ·
@TheGeorgePu AI fluency is becoming job security.
O
Oren Melamed @OrenMe ·
I hear devs passing on @code and @GitHubCopilot after finishing their 10/20$ account with 300 premium requests and moving on to use ClaudeCode with Opus and spend 1000$ So letโ€™s do the math afaiu: 40$ @GitHubCopilot gives u 1500 RPUs, meaning 500 Opus 4.5 cause it has multiplier of 3 Now we have 960$ more to get to 1000$ So each additional RPU over 1500 costs 0.04$ so it means for 960 u get additional whopping 24,000 RPUs!!! So even if u only use Opus all the time it means for 1000$ you get a total of 8500 requests a month And TBH not every issue requires Opus so you can way more for that, with variety of models, plethora of surfaces to work on - local, background, cloud, CLI, SDK, and great set of tools(sub agents, skills, ask questions etc)
G GergelyOrosz @GergelyOrosz

"Earlier, all devs used GitHub Copilot. 9 months ago, we rolled out Cursor to all devs. 1.5 weeks ago, we rolled out Claude Code to everyone, and cancelled our Copilot subscription" - CTO at a company with 600 engineers (I hear this exact "transition" story, a LOT!)

P
Pierce Boggan @pierceboggan ·
.agents/skills coming to @code!
N njukidreborn @njukidreborn

@embirico changed merged in @code for broader copilot adoption https://t.co/JtKTMo4tP8, cheers!

A
Aiden Bai @aidenybai ·
How I made Claude Code 3x faster
A
A1GoKn8t @e7r1us ·
@aidenybai "Make the agent better at codebase search" If you are in js/ts project. Parse with babel, and create a compact representation of hooks, constants, context, function signatures with the starting lines. Send it to the agent as context.
A
Aiden Bai @aidenybai ·
- we've been around for longer and React Grab run in real dev envs! - it extracts file sources rather than DOM selectors. agents can't actually do much with selectors, while sources are the source of truth - it's a bit more of a "grab" UX than "comments" on the page i encourage you to go try! https://t.co/rNN64gujZf
T
Theo - t3.gg @theo ·
Good to see the industry finally standardizing. Products that moved to `.agents/skills` so far: - Codex - OpenCode - Copilot - Cursor - Not Claude Code
L leerob @leerob

We're adding support for .agents/skills in the next release! This will make it easier to use skills with any coding agent.

C
Claude @claudeai ·
You can now connect Slack to Claude on Pro and Max plans. Search your workspace channels, prep for meetings, and send messages back to keep work moving forwardโ€”without leaving your conversation with Claude. Get started: https://t.co/p9xKFW2LUJ https://t.co/Y2mzo2QXUJ
O
OpenAI Developers @OpenAIDevs ·
GPT-5.2 and GPT-5.2-Codex are now 40% faster. We have optimized our inference stack for all API customers. Same model. Same weights. Lower latency.