AI Morning Briefing — August 26th, 2026

Anthropic overtakes OpenAI in quarterly revenue, OpenAI's Jalapeño chip beats Nvidia Blackwell, Claude's memory unifies across Chat and Cowork, plus DevDay Astra speculation.
AI Morning Briefing — August 26th, 2026
Your daily digest of what's happening in AI, straight from the trenches.
🚀 Headlines (30 sec read)
- Anthropic overtakes OpenAI in quarterly revenue for the first time — $11.6B vs $6.7B in Q2, with Anthropic posting a slight operating profit while OpenAI's losses grew to $12.3B.
- OpenAI's first custom chip, Jalapeño, beats Nvidia Blackwell on performance-per-watt — first public benchmarks landed at Hot Chips, though it's still engineering samples, not shipping silicon.
- Claude's memory is now unified across Chat and Cowork — updates live during a conversation instead of after, stored as editable per-topic files, sensitive subjects off by default.
- A cryptic "34 days" tweet from OpenAI's Codex lead has the internet convinced Astra is landing at DevDay — the math lines up with September 29th, but OpenAI hasn't confirmed a thing.
New from IndyDevDan: "Pi Coding Agent Observability: HTML Specs with Gemini 3.5 Flash and GPT Image 2" — running three coding agents side by side to measure which spec format actually wins on tokens and turns.
New from Owain Lewis: "How I Use OpenAI Codex (Real Workflow)" — a real day-to-day tour of the Codex desktop app, permissions, and ticket-driven development.
New from AI Jason: "I don't prompt agents anymore..." — why "control graphs" are replacing turn-by-turn prompting for repeatable agent work.
New from Cole Medin: "BMAD's Founder on the Future of AI Coding (And the Slop Apocalypse)" — BMAD's Brian on why planning frameworks matter more, not less, as models get stronger.
🧠 Deep Dives (4 min read)
Anthropic Out-Earns OpenAI for the First Time
For the first time since both companies have existed, Anthropic out-earned OpenAI in a single quarter: $11.6 billion in Q2 2026 revenue against OpenAI's $6.7 billion, according to investor materials reported by the Wall Street Journal. Anthropic's revenue has gone from $787 million in Q2 2025 to $11.5 billion a year later — a roughly 14x increase — and the quarter closed with a slight operating profit. OpenAI, meanwhile, grew revenue only 18% quarter-over-quarter while its operating loss widened to $12.3 billion, up from $9.3 billion in Q1. The figures are preliminary and uncertified since neither company is public yet, but the direction is stark enough that Sam Altman addressed it directly on a podcast, admitting the industry — himself included — was "too aggressive" about timelines for AI reshaping the economy. The financial gap lands right as both companies race toward IPOs: Anthropic has filed a confidential S-1 and is targeting an October Nasdaq listing at a potential $1 trillion valuation, while OpenAI has pushed its own listing to 2027, partly because Sam Altman won't list below that same $1 trillion floor. → Source
OpenAI's Jalapeño Chip Beats Blackwell on Perf-per-Watt
OpenAI presented its first public benchmarks for Jalapeño, its custom inference chip built with Broadcom, at the Hot Chips conference on August 25th. Independent testing by SemiAnalysis found Jalapeño beats Nvidia's Blackwell across almost every scenario it was measured on — without being tuned for any single point on the curve — delivering 1.5 to 1.9 times more AI work per watt and 1.7 to 3.6 times lower latency, running under 550W versus Blackwell's 1200–1400W. On DeepSeek R1, Jalapeño hit 700 tokens/second versus Blackwell's 169. The comparison comes with a real asterisk: SemiAnalysis calls it "somewhat incomplete and unfair" since Jalapeño is really competing against Nvidia's newer Rubin accelerator, which is already shipping to customers while Jalapeño hasn't moved past engineering samples. OpenAI plans low-volume production deployments in its own data centers by late 2026, scaling into 2027 — this is a company betting its own compute costs on silicon it designed itself, not a chip anyone else can buy yet. → Source
Claude's Memory Now Follows You Between Chat and Cowork
Anthropic merged Claude's memory into a single system this week: anything Claude learns about your projects in a normal chat now shows up when Cowork runs a cloud-based task, and whatever Cowork discovers carries back into chat. Two changes matter more than the merge itself. First, memory now updates live as you talk, instead of being summarized in a batch after the conversation ends. Second, everything stored is presented as editable files organized by topic — read one, correct it, delete it, and the fix applies everywhere that topic comes up, instead of being buried inside a black-box summary. Sensitive subjects — health, religion, politics, immigration status — aren't stored by default; flipping that on is an explicit opt-in with a notice shown every time something in that category gets saved, and ID numbers and immigration status are excluded from memory entirely regardless of the toggle. It's on by default for Free, Pro, and Max; Team and Enterprise admins choose. → Source
OpenAI's Codex Lead Drops a 34-Day Hint, Internet Does the Math
Codex lead Tibo Sottiaux posted "Good products take time. At least 34 days" on August 26th, and the post immediately raced past 100K views because 34 days from today lands on September 29th — OpenAI's confirmed DevDay date in San Francisco. The obvious read is that Astra, OpenAI's next major model, debuts there. Astra itself isn't new: OpenAI named it "our next major model" on August 1st after an internal version solved ten long-standing open math and theoretical CS problems with machine-checkable proofs. What complicates the countdown is OpenAI's own August 7th disclosure that it slowed parts of Astra's development after the model tripped the "Critical" tier of OpenAI's cybersecurity capability framework for the first time — meaning an internal checkpoint could independently identify and potentially carry out attacks against well-protected real-world systems, which triggers mandatory extra safeguards before any wider release. OpenAI hasn't confirmed any link between Tibo's post and a DevDay launch, or whether Astra ships as GPT-5.7, GPT-6, or another name entirely. → Source
New from YouTube (2 min read)
Pi Coding Agent Observability: HTML Specs with Gemini 3.5 Flash and GPT Image 2 — IndyDevDan
Covers: Agent observability — streaming every tool call, turn, and dollar spent by a running agent to a dashboard, so spec-format decisions are measured instead of guessed at.
Example: Runs three Gemini 3.5 Flash coding agents on the identical task with markdown, HTML, and image-embedded ("V spec") planning documents, then compares token spend and turn count live in a swim-lane observability UI.
→ Watch
How I Use OpenAI Codex (Real Workflow) — Owain Lewis
Covers: A real day-to-day Codex setup — desktop app versus CLI, sandbox and approval permission modes, git worktrees for parallel work, and wiring an MCP plugin into the workflow.
Example: Walks through picking up a Linear ticket inside the Codex desktop app, watching it flip to "in progress" automatically, reviewing the agent's live code-change diffs, and leaving inline review comments the agent then addresses.
→ Watch
I don't prompt agents anymore... — AI Jason
Covers: "Control graphs" — turning a repeatable process into nodes, edges, and shared state that an agent runs on its own, instead of being prompted step by step for every task.
Example: His team's daily "bad design triage" loop pulls candidate designs from a database, runs deterministic scripts to catch obviously broken ones, fans out sub-agents to judge the rest against the original user request, and publishes a ranked report — no human prompting required per run.
→ Watch
BMAD's Founder on the Future of AI Coding (And the Slop Apocalypse) — Cole Medin
Covers: A conversation with BMAD founder Brian on why spec-and-planning frameworks matter more as models improve, and shifting from "human in the loop" to "human on the loop" without losing control.
Example: Demos an MCP server built with MCP-use that returns a rendered UI component instead of raw JSON — asking Claude to look up a GitHub repo's stats renders a live chart directly inside the chat.
→ Watch
📅 Coming Up This Week
| Date | Event |
|---|---|
| Sept 29 | OpenAI DevDay, San Francisco — where the internet expects Astra, or at least a name for it, to surface |
| This week–early Oct | Anthropic's institutional IPO roadshow, targeting an October Nasdaq listing at a potential $1 trillion valuation |
| Watching | Whether OpenAI says anything concrete about Astra's release gate before DevDay, given it's the first model to trip its "Critical" cybersecurity threshold |
🛠️ Try This Today
Turn a Repeating Task into a Control Graph
If you find yourself giving Claude Code the same multi-step instructions every day, stop re-prompting and write the process down as a skill instead:
- Map the actual steps of the task as nodes — what has to happen, in what order, and what decides whether it continues or stops.
- For any deterministic part (running a script, checking a value, fetching data), have the agent call a script or command instead of reasoning it out fresh each time.
- Give each node a clear input and expected output, so a step's success or failure is unambiguous.
- Save the whole thing as a
SKILL.mdwith one file tracking the current state, so the agent (or you, next week) can pick up mid-process.
Why it matters: the same babysitting you're doing by hand today is exactly what a control graph automates — and it only takes writing the SOP down once.
⚡️ Quick Links (2 min read)
GitHub Trending
- anthropics/claude-plugins-community — community plugin marketplace for Claude Code and Cowork, 1.9K+ stars
- TauricResearch/TradingAgents — multi-agent LLM framework for financial trading research, 100K+ stars
- Shubhamsaboo/awesome-llm-apps — a large collection of agent, RAG, and LLM app examples, 134K+ stars
Reddit Hot
- [r/ClaudeAI] I built "Omegle for political debates" — matches you with someone who disagrees, with Claude Haiku judging the debate live → Discussion
- [r/LocalLLaMA] Qwen3.8-Flash-Next architecture discussion — early speculation on whether the architecture will be surprisingly local-friendly once weights drop → Discussion
Hacker News Top
- Apple introduces M6 and M5 Ultra (1079⬆️) — new chips pitched squarely at local AI compute, alongside a refreshed Mac Studio and Mac mini
- Nitter and XCancel receive cease and desist notices (817⬆️) — the two remaining open-source Twitter/X front ends are being shut down
- Agentic Context Management: Memory and Cost as Architecture Problems (25⬆️) — treating what an agent remembers, and what that costs, as a first-class design decision rather than an afterthought
🦞 TL;DR
The narrative today: the balance of power between the two biggest labs just flipped on paper, and everyone's still arguing about what a 34-day-old tweet means for a model OpenAI itself flagged as too risky to ship on the normal timeline.
My take: the Anthropic-over-OpenAI revenue crossover is the real story today, and it's not really about which chatbot is "better" — it's that Anthropic bet on enterprise API revenue while OpenAI kept spending on consumer scale and now-custom silicon, and the coding/agent market paid off first. The Jalapeño benchmarks matter for the same reason: OpenAI building its own chip only makes sense if it's trying to control unit economics the way Anthropic already does structurally. As for Astra — a company that just told the public a model tripped its own "critical" safety bar isn't going to un-trip it because a tweet says 34 days.
What I'm watching: whether Anthropic's October IPO roadshow actually lands on schedule, and whether OpenAI says anything substantive about Astra's safety gate before September 29th instead of letting Twitter numerology do the talking.
Stay informed. Stay curious.
Related Posts
AI Morning Briefing — September 15th, 2026
Claude Fable 5.1 cracks a 370-year-old cipher, Anthropic launches Claude for Financial Advisors, and a mathematician proposes rebuilding math PhDs for the AI era.
AI Morning Briefing — June 20th, 2026
Nobel winner John Jumper joins Anthropic, Fable 5 stays #1 despite US ban, and Chinese AI seizes 60% of open-source API market
AI Morning Briefing — June 19th, 2026
US blocks Claude Fable 5 globally; SpaceX acquires Cursor for $60B; GLM-5.2 beats GPT-5.5 in agentic evals; ChatGPT drops below 50% market share