Welcome back. Last month, Twitter cofounder Jack Dorsey dropped Buzz — a workspace where agents and devs can work in sync. It looked like the first real threat to Slack's dominance. Now Slack is punching back. Instead of forcing agents to live in isolated terminals, they’re bringing them straight into your daily workspace to redefine how you ship code. More details below.

Also: Claude Code’s new output setting cuts the small talk, a simple solution for draining batteries of a MacBook, and when to build your own agent harness.

Today’s Brief

  • How AI costs are starting to dictate product roadmaps at Canva

  • How to set up a live home energy app

  • A Cursor dev’s playbook on how she shipped 1,000 PRs

  • Are Claude Code’s enterprise plans worth it

TODAY IN PROGRAMMING

Click here to watch Slack Code in action.

Slack native coding agents are here: Salesforce just launched Slack Code, which pulls AI agents out of the terminal and puts them right where your team already hangs out. Now, you can spin up an agent like Claude directly in a Slack thread, give it context from your conversation, and watch it code and preview progress in real time. Instead of one developer working with an agent alone, coding becomes multiplayer. Watch how it works.

YC-backed startup ships VS Code inside your terminal: Zenbu Labs just open-sourced terminal-code. So you can type one short command, and a full VS Code pops up right in your terminal. Devs can also get diffs, split panes, and extensions, plus their settings imported from other editors. It even matches your color theme. For now, it runs on macOS and Linux. Windows users can access it through WSL (Windows Subsystem for Linux), a system which lets Windows 10 and 11 run Linux directly without a separate virtual machine or dual-boot setup. Try it here.

Ramp takes on rising model costs: The fintech startup just dropped Router.com. A single endpoint that automatically routes every request to the cheapest model that still hits your quality bar. Since the API is compatible with both OpenAI and Anthropic, teams can switch providers with just one line of code. Ramp says Router cuts AI costs by 40% on average, and can automatically fall back to another model if a provider goes down. It’s free through 2026, with $26 in credits to start. More details on the API here.

Most AI models start from zero, with no memory of your tone, voice, or cadence. Essentially, they just mimic the average writer on the internet, which is downright boring. 

In Oracle’s latest step-by-step tutorial, you can learn how to create three layers of agent memory with Oracle AI Database, so agents can write engaging social posts in your voice. 

INSIGHT

How AI costs are starting to dictate product roadmaps at Canva

Source: The Code, Superhuman

The margins. AI features look attractive until you're scaling to millions of users. Canva learned this the hard way. After nine straight years of profitability, the company slashed its 2026 growth forecast from 30% to 20%. CEO Melanie Perkins attributed the shift to the massive overhead of serving AI to their 265 million monthly users.

Hit the brakes. So Canva paused its AI rollout to focus on the basics. They audited their systems to see what was actually happening and find ways to improve. Here's what they did:

  • Rebuilt the inference setup. Every request used to run through a pricey frontier model, even the simple ones. Now the easy work gets handled cheaper, and the expensive models are saved for the tasks that actually need them.

  • Moved more work onto its own models. Leaning on someone else's frontier model means paying their price on every call. Canva trained in-house models to bring the overall cost per task down.

  • Added the usage and pricing controls it had been missing. Demand had outrun the guardrails, so heavy users could run up costs unchecked. Putting limits and pricing in place stopped a handful of power users from quietly blowing up the bill.

The playbook is simple. These changes reportedly slashed serving costs by about 90%. The same strategy works for smaller teams: start lean and scale only when necessary. Offload simple tasks to smaller models, cache repeated context, tighten output lengths, and consider self-hosting once your volume justifies the overhead.

PS: Find the full discussion here. For routing specifically, RouteLLM drops straight into the OpenAI client and shifts simpler queries to cheaper models automatically.

The intelligence era is here. Join Glean:GO 2026, Aug. 26–27 to learn how enterprises turn AI into measurable impact. Hear from leaders from OpenAI, NVIDIA, and Snowflake, and gain practical strategies from keynotes and hands-on sessions.

IN THE KNOW

What’s trending on socials and headlines

Meme of the day.

  • Less Chatter: Claude Code just added a new output setting that cuts the small talk and jumps straight to the code. You can toggle it on in your settings.json (1M views).

  • Battery Drain: A dev’s Mac battery kept falling from 100% to 10% in under three hours. The fix had nothing to do with his terminal, worth checking if your battery is struggling too (1.1K likes).

  • Solar Side Project: A man paired Claude and Pi to set up a live home energy app in two days, even cracking undocumented inverter data along the way.

  • PR Factory: A Cursor engineer says she shipped 1,000 PRs last month running Cursor cloud agents 24/7. She's on pace to double that, and her playbook is open source (1.2K likes).

  • Enterprise Tax: A founder says his $100 Claude Code plan outlasts his partner’s $350 enterprise plan. Devs weigh in (2.1K likes).

TOP & TRENDING RESOURCES

Click here to watch the tutorial.

Top Tutorial

When to build a custom agent harness (by LangChain CEO): Check out this deep dive from LangChain co-founder Harrison Chase. He walks through exactly how to build your own custom AI agent harnesses. You’ll learn to create custom middleware, implement observability, and establish data flywheels to optimize production-ready agents.

Top Repo

Anthropic Cybersecurity Skills (30.1k⭐️): This tool gives AI agents 817 ready-made security skills across 29 domains, with support for Claude Code, Codex CLI, Cursor and more.

Trending Cookbook

How to build on the open agent harness (by OpenAI): Coding agents are powerful, but jumping between tools is a hassle. This guide shows you how to use the open Codex harness to bring agents directly into your workflow, complete with context, tools, and approvals. Using this approach, Asana finished a massive frontend migration in just two weeks, a project that was originally expected to take five years. 

AI CODING HACK

How to make Codex work continuously without manual input

Codex normally stops after one turn. For a long task, such as a migration or a CI fix, use a persistent goal.

/goal fix all flaky tests and make CI pass

Add a clear completion rule:

/goal fix all flaky tests. Run the complete test suite. Done means every test exits with code 0 and CI checks pass.

Control the goal:

/goal          # Show goal status
/goal pause    # Pause the goal
/goal resume   # Continue the goal
/goal clear    # Remove the goal

If “/goal” is not in the slash command list, enable goals:

codex features enable goals

P.S. Get 50+ AI coding hacks for Claude Code, Cursor, and Codex here.

IN CASE YOU MISSED IT

Our most-clicked story from yesterday

Ever wondered which AI models your computer can actually handle? An open-source tool profiles your hardware to find out for you.

Grow customers & revenue: Join companies like Google, IBM, and Datadog. Showcase your product to our 300K+ engineers and 150K+ followers on socials. Get in touch.

What did you think of today's newsletter?

Your feedback helps us create better emails for you!

Login or Subscribe to participate

You can also reply directly to this email if you have suggestions, feedback, or questions.

Until next time — The Code team