Anthropic Open-Sources Commerce Agents While Shopify's 0.8B Fine-Tune Claims a Win Over GPT 5.6
Anthropic released an open-source blueprint for shopping and merchant agents, with claimed retail gains of up to 35% higher cart value, while Shopify's @tobi says a 0.8B fine-tune beat GPT 5.6-sol xhigh on a specialized task. A new eval also argues your agent harness, not your model, drives the spread, with cost per pass ranging from $1.05 to $18.34 on identical models and tasks.
Quick Hits
- @ClaudeDevs announced it is open-sourcing Claude Commerce Agents, a forkable blueprint with runnable reference implementations across retail, travel, telecom, and entertainment. Per @MaxForAI's detailed breakdown, Anthropic claims some retail clients saw cart value rise up to 35% and purchase completion up to 60%, with Shopify and Priceline already building shopping experiences on Claude.
- Shopify's @tobi says the company's ML team fine-tuned a 0.8B model that beats GPT 5.6-sol xhigh on "this very specialized task," crediting a "self improving recursive flywheel." @Ales_is_offline reads it as a signal that in-house small models, and the ML teams to run them, are becoming a must-have.
- @guanlan's FrontierHarness Eval ran the same model on the same tasks across nine harnesses, including Claude Code, Codex, Pi, Exo, and DeepSeek Harness: 360 runs and 2 billion tokens later, pass rates ranged from 50% to 67% and cost per pass from $1.05 to $18.34.
- @finkd says Meta's Muse Spark 1.3 is rolling out with "frontier performance almost too cheap to meter," calling it the company's biggest jump yet on coding and agentic work, with open weights releases "coming soon." @MatthewBerman's reaction: "Ok I see you Meta."
- Briefly: @jimfarley98 revealed Ford's 2027 midsize electric truck, the Fathom, during a desert-testing detour through Las Vegas; @QwenDevs introduced zg, a local-first search tool going "beyond keywords" for humans and agents; @0xHvdes says @0xfJuan's "Everywhere Overnight" startup playbook is worth the $1-3k advisors charge; and @i2cjak cheered @amembedded's $63 STMicro VL53L9CX LiDAR breakout (8.8m ranging, 100Hz) as proof "American embedded is goated."
Anthropic Bets on Being E--Commerce's Middle Layer
The clearest strategic signal in today's feed: Anthropic wants to power commerce agents, not compete with merchants. Per the @ClaudeDevs announcement and @MaxForAI's summary, the open-source blueprint splits into two agents. A Shopping Agent embeds in a merchant's app or site to handle search, comparison, personalized recommendations, cart building, order status, and after-sales. A Merchant Agent serves internal staff with sales analysis, inventory, pricing, and campaign generation, with any mutation to catalog or prices routed through staging for human approval.
The architecture is deliberately plain: one Claude model running an agent loop with tools, skills, memory, guardrails, and evals, calling the merchant's existing search, cart, inventory, and pricing systems. No multi-agent routing. Even UI elements like product cards, itineraries, and seat maps are exposed as structured tools rather than generated text. There is also a Claude Code plugin, so a repo can generate a custom commerce agent via a command like /scaffold-commerce-agent.
Notably, Anthropic says it will not build marketplace, payment, or ad layers; catalog, checkout, and customer relationships stay with the merchant. The usage numbers are Anthropic's own claims relayed through social posts and have not been independently verified.
Tiny Fine-Tunes and Token Thrift
The counterpoint to frontier-model hype ran through several posts. @tobi's claim that a 0.8B fine-tune beats GPT 5.6-sol xhigh on a narrow task came with a caveat worth keeping: he attributes it to Shopify's self-improving flywheel, not small models being universally better. @Ales_is_offline frames the economics: companies may stop paying premium prices for general models on tasks an internal small model handles.
The cost theme extends to tooling. @dr_cintas posts four concrete steps to stop Fable 5.1 from burning weekly credits: set /effort to low, run /claude-api cost-optimize, run /claude-api prompt-audit to clear stale junk, and migrate old model IDs to claude-fable-5-1. And @0xIlyy reports, secondhand, that one tinkerer pushed GLM 5.3 Flash on two RTX PRO 6000 Blackwell cards from 200 to 1,000 tokens per second, with 20-50% gains arriving every few hours. His conclusion: "whatever software you use, it's nowhere near to being optimized enough."
Harnesses, Factories, and Triggers: The Plumbing Takes Over
If models are commoditizing, today's posts put the differentiation in the scaffolding. @guanlan's FrontierHarness Eval makes the case with numbers: identical model, tasks, and runtime, yet pass rates span 17 points and cost per pass varies more than 17x depending on the harness. @GoogleCloudTech published a guide on the same problem from the cost side, explaining that agent harnesses manage runtime state, sandbox execution, and prompt preparation, and that re-sending static context every turn multiplies token spend; context caching is the fix.
@stencil_labs argues the deeper point in a teardown of what OMP got wrong and OMP² changes, claiming "a while loop around a fetch" is really "systems software in a trenchcoat"; @viathebrink calls it "an actual goldmine for sota harness engineering." The factory metaphor keeps spreading too: @augmentcode shared co-founder @igoro's look at software factories being built at Cloudflare, Vercel, Uber, and LaunchDarkly, ending on the question of whether agents will eventually be prompting us. @kdaigle flagged @burkeholland's confession of having "accidentally made an agent factory" and the surprising things agents do while coordinating.
On the consumer side, @ericzakariasson (via @RayFernando1337) says Grok Bot routines can now be triggered by webhooks, from a specific WhatsApp contact messaging you to a Notion page changing, a temperature threshold, a desk button, a GitHub action finishing, or a server error spike. @RayFernando1337's framing: "Zapier but on steroids and with plain English." @adiix_official goes further, documenting how he fed all 18 rules from a "3-page SpaceXAI manual" into Grok Bot to build a Chief-plus-specialists setup with a shared /workspace, three gates (source, evidence, action), and humans approving only money, publishing, deletion, and signatures.
Code Review Meets Slop, and the Curriculum Rewrites Itself
@martinfowler linked Rachel's Ramblings asking "Maybe We Shouldn't Be Reviewing All This Code," arguing AI may not have broken review so much as exposed that review was being used to solve the wrong problems. @henrytdowling's slop-fighting list is blunt: agents give unit tests too much authority, and bad tests are a huge slop source. His remedies include @dillon_mulroy's antislop oxlint rules, @_lopopolo's "useless test deleter," telling the agent to "delete as much as possible," and adversarial goals on LOC or Halstead complexity.
@0xblacklight, crediting @humanlayer_dev, adds the compounding worry: models improve at working in messy codebases, but they improve even faster at creating mess, and that debt "compounds superlinearly on large teams." Quoted @Steve_Yegge puts it more personally: every model "will eventually build systems that they can no longer understand," and Fable 5 flailed on him for a week until 5.1 arrived. His advice is to keep "an iron grip on system size."
Tooling is responding. @github shipped a repeatable --attach flag in GitHub CLI for inline images and video in issues and PRs, which @OhansEmmanuel combines with pr-lens for animated architecture diagrams; @mattpocockuk praises @dexhorthy's /show-me skill as "a toolbox of nice ways to look at code" that makes PR descriptions readable. On education, @mihail_eric's updated Stanford course throws out 85% of last year's material for agent skills, context engineering, MCP portals, and agentic review, with students shipping PRs to partner OSS repos and all classes public from 9/22; @nummanali calls the free resources a gift. @DeRonin_ posts a 6-month robotics engineering resource list, calling robotics "the least crowded high-value skill in tech right now." And on output craft, @addyosmani flags Anthropic's official de-flavoring prompt for stripping mannered prose from Fable 5.1, @wp confirms @lennysan's roundup of @anshuc's eight creativity techniques (seed strings, ambitious prompts, subagent loops, image and video generation, hand-rewritten copy) "actually works" for divergent design, and @alex_prompter keeps circulating prompt shares.
Practical Takeaway
Before you pay for a bigger model, benchmark the scaffolding and the task. If you have one narrow, high-volume workflow, @tobi's post is a reason to prototype a small fine-tune against your frontier baseline. If your costs are the problem, @guanlan's eval suggests running identical tasks across two harnesses first, since the spread there dwarfed model-to-model differences, and @dr_cintas's caching and audit steps apply immediately. Whatever you pick, @Steve_Yegge's warning stands: set explicit size and slop limits on agent-written systems now, because the compounding mess is harder to undo than the savings are to capture.
Sources
Sometimes it's easier to show than tell. We're sure this update will help with that. 👀 GitHub CLI now has a repeatable --attach flag that uploads a local image or video. Reference it inline in an issue, pull request, or comment body. Available now to all users on GitHub across all plans. 🎉 https://t.co/2oRtlSHdPT
https://t.co/Arc8jJi9kz
From rg to zg: Local Search Beyond Keywords
Summary: The information humans and agents need is often scattered across large numbers of local files, making it difficult to locate accurately and e...
you can now wake a grok @bot from anywhere! when you create a routine, click "add trigger" and select webhook some ideas: - you get a whatsapp message from a specific contact - a page changes in Notion - your home temp sensor hits a threshold - someone presses a button on your desk - a github action completes - your server hits an error rate spike try it out and lmk what you setup!
How to become a Robotics Engineer in 6 months (RESOURCES)
Robotics is the least crowded high-value skill in tech right now The problem is that almost nobody knows where to start, because the field looks like ...
I’m excited to finally announce the newest edition my Stanford course 𝗧𝗵𝗲 𝗠𝗼𝗱𝗲𝗿𝗻 𝗦𝗼𝗳𝘁𝘄𝗮𝗿𝗲 𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗲𝗿. It has been 9 months in the making. Last November, with the release of Claude Opus 4.5, coding agents experienced a step function improvement in capability. We all felt it. The LLMs were more powerful, could reason for longer, solve harder tasks. This year’s iteration of my course reflects the 2026 metamorphosis of software engineering. My core belief is simple: AI-native developers of the LLM era are going to become the most important members of any software organization. I have designed my course to train this next generation of engineers. 𝗪𝗵𝗮𝘁’𝘀 𝗱𝗶𝗳𝗳𝗲𝗿𝗲𝗻𝘁 𝘁𝗵𝗶𝘀 𝘁𝗶𝗺𝗲 𝗮𝗿𝗼𝘂𝗻𝗱 First, 85% of my Fall 2025 class material is being thrown out. The Fall 2026 syllabus reflects the core capabilities AI-native engineers must have: agent skills, advanced context engineering, MCP portals, agent-ready codebase principles, agentic code review, security, parallelizing background agents, software factories, and more. Second, I am going to teach my students how to have software taste. Every student will be required to ship pull requests to production-grade, real-world codebases. The course is collaborating with the top open-source AI repos who will offer support and mentorship to students on how to meaningfully contribute to their projects. This has never been done before in any university course so I am incredibly grateful to our OSS Partners: @browserbase, @HeyGen, @CopilotKit, @semgrep, @OpenHandsDev, @milvusio, @marimo_io, Pi, @crewAIInc, @warpdotdev, @vercel, @cmux, @arizeai, @UnslothAI, and @anyscalecompute. 𝗪𝗵𝗮𝘁’𝘀 𝘀𝘁𝗮𝘆𝗶𝗻𝗴 𝘁𝗵𝗲 𝘀𝗮𝗺𝗲 I’m fortunate to again have AI software engineering leaders and founders as guest speakers to share their learnings from building top coding agent products. Thank you to @leerob from @cursor_ai, @bcherny of @claudeai code, @EnoReyes of @FactoryAI, @silasalberti of @cognition, @0xine of @semgrep, Rajesh Bhatia of @Cloudflare , @amasad of @Replit, and @eladgil. All resources will be available online. All classes will be available to the public. 9/22 on Stanford campus. See you in class. https://t.co/wTokHyUMsz
Cloudflare, Vercel, Uber, LaunchDarkly, and others are building software factories. I looked at how they work, the results so far, and what's next: will agents be prompting us? https://t.co/AOlCfi2osU
what omp got wrong, what omp² changes. why "a while loop around a fetch" is systems software in a trenchcoat: https://t.co/BRwTnFh6k2
I'd always thought AI was terrible at design, but after reading today's 🤯 post by @anshuc, I realized I was just doing it wrong. "AI models are capable of amazing creativity, but that creativity gets stifled. LLMs are trained to be next-token predictors: they look at a sequence of text and predict what typically comes next. Great design is exactly the opposite of this. Great design bends the rules and delights users with memorable, unexpected choices." @anshuc led design and engineering teams at Apple for 12 years. In his words: "Most people only see 1% of AI's creative potential. I want to show you how to tap into the other 99%." His 8 techniques for breaking out of the 1%: 1. Use seed strings to inject variety 2. Be much more ambitious with your prompts 3. Create positive feedback loops with subagents 4. Use image generation to enrich designs 5. Use video generation 6. Cut out elements that don’t add value 7. Remove AI tells 8. Rewrite copy by hand Read the post here: https://t.co/OEnvr1Z1LK P.S. This design was made by AI 👇
Why Some Startups Become "Everywhere" Overnight
what are your favorite codebase de-slop skills / best practices? I feel like this is 80% of my job at this point and I'm wondering if smart people have figured out some way of doing this that is better than what I'm currently doing
How to slash token costs with context caching in agent harnesses
Coding agents do heavy engineering work. The agent harness manages runtime state, sandbox execution, and prompt preparation. Providing static surround...
SpaceXAI team just dropped a 3-page operator’s manual for turning Grok Bot into a full multi-agent system that runs entire workflows 24/7 The shift: instead of prompting one Bot task by task, you build a Chief + specialist teams that own entire workflows here’s the 7-step Grok Bot playbook: step 1 - mental model → one persistent cloud computer, multiple Bot screens, shared files, browser sessions, credentials and /workspace underneath step 2 - setup order → create the Chief first - it doesn’t do the work, it routes → delegates → watches handoffs → collects outputs → escalates step 3 - internal bus → stop passing important context through chat - research, drafts, evidence, decisions and handoffs live inside /workspace so every Bot can continue exactly where another stopped step 4 - specialist teams → split content, intelligence, ops, research and coding across different Bots while one Chief coordinates everything step 5 - automation → every serious workflow gets 3 gates: source gate → evidence gate → action gate - Bots keep working until something actually needs human approval step 6 - trust layer → let Bots research, draft, summarize, reconcile, verify and queue autonomously - humans approve only money, publishing, deletion, signatures and irreversible external actions step 7 - expensive lessons → constant polling burns quota, syncing everything wastes usage, bad retries duplicate actions, undocumented internals break, and too many Bots can actually make the system slower the result: Grok Bot stops being a chatbot and becomes a 24/7 AI team - every workflow has an owner, every handoff leaves evidence, and humans only step in when judgment or approval is required Read this before building another Grok Bot - it breaks down the 18 rules, multi-agent architecture, handoff system, approval layer and automation model most agent tutorials never show Bookmark it and build your own Grok Bot team from the full article below
Stop Fable 5.1 from wasting tokens
Muse Spark 1.3 is rolling out today with frontier performance almost too cheap to meter. This is the biggest jump we've made so far on coding and agentic work. Try it in Muse Code and our API. Next up 🍉 and Muse Spark open weights releases coming soon. https://t.co/XQQEDEJGD7
We're open-sourcing Claude Commerce Agents. This is a blueprint for building shopping and merchant agents, with reference implementations across retail, travel, telecom, and entertainment. https://t.co/uEPja39hBY
STMicroelectronics VL53L9CX 2.3K LiDAR Sensor $63.36 each, $49.58 @ 25 They fit a whole WAYMO in this thing. Not really. I2C/I3C + CSI interfaces for up to 100Hz update rate. Supports <5cm-8.8m ranging. Pre-order a STEMMA QT breakout here: https://t.co/KmsQdODwgU https://t.co/6Ph7UCzllH
All models, no matter how smart, will eventually build systems that they can no longer understand or maintain, if you let them. Fable 5 finally outbuilt itself, and flailed on me for a week. Fable 5.1 looks like it will fix it. For now. But you have to keep an iron grip on system size, or it'll run away from you.
I accidentally made an agent factory