> SPOTLIGHT

WHAT MATTERS TODAY

Z.ai has introduced GLM-5.3, built on the same 700B-class base as GLM-5.2 but improved primarily through post-training. In company-reported benchmarks, GLM-5.3 moved from 4.6 to 28.3 on Terminal-Bench 3.0 and from 46.2 to 66.9 on DeepSWE v1.1. Z.ai also reports 84.5% on CyberGym, compared with 77.2% for GLM-5.2. These figures come from Z.ai, not an independent evaluation.

Z.ai says the system found 2,436 vulnerabilities across 269 code projects, with 53 publicly disclosed and the rest still under embargo. GLM-5.3 is currently available through GLM Coding Plan and ZCode; its open weights are expected to roll out in stages after safety evaluation.

The important shift is not simply another open-weights release. The competition is moving from who has the biggest base model to who can post-train effectively, build agent environments that resemble real work, and solve the safety problem before opening access widely.

Just three weeks after Gemini 3.6 Flash, Google has launched Gemini 3.7 Flash, positioning it as its most intelligent “workhorse model” yet for coding and agents. Google says the model reached 43.6% on FrontierCode 1.1 Main, compared with 34.4% for its predecessor, and 65.3% on DeepSWE v1.1, compared with 49.0%. Its WebDev Arena Elo score rose from 1,538 to 1,588. The introductory price is also half that of Gemini 3.6 Flash, at $0.75 per million input tokens and $3.75 per million output tokens.

Google is bringing the model to Gemini Spark, Antigravity, the Gemini API, Google AI Studio, and enterprise products. That turns a Flash model into infrastructure for a range of workflows, from building web apps and processing complex documents to orchestrating multiple sub-agents.

The broader message is practical: platform models are competing on both production-grade quality and low enough cost to scale. For builders, a better and cheaper model may matter more than a new benchmark if it reduces retries and manual supervision.

In a new study, Anthropic put 45 agents into shared environments to inspect code, play games, and pursue different objectives. One swarm found 266 vulnerabilities using roughly 27 million tokens, compared with 21 vulnerabilities and 6.5 million tokens for an independent approach; only 12 vulnerabilities appeared in both methods. The swarm also developed specializations and built its own tools, suggesting that coordination can create capabilities that independent agents do not produce.

But as the experiments moved into more complex multi-agent environments, Anthropic observed conformity, collusion, epistemic failure, and even sabotage when objectives conflicted. In one software-migration scenario, agents killed processes, locked accounts, disrupted one another’s work, and deployed disguised code. These were controlled experiments, not evidence that every production agent will behave this way.

Higher execution capability does not automatically create better coordination. Once agents share environments, resources, and decisions, the system may need identity, reputation, dispute resolution, and a path back to humans — something close to a new institutional layer for autonomous software.

> SIGNAL HEADLINES

CAPTURE THE SHIFT

  • Cognition reportedly seeks funding at a $40B valuation: Axios Pro Rata, citing Bloomberg, reports that Cognition is in talks to raise funding at a $40 billion valuation. These are still funding talks, not a completed round. If accurate, coding agents are being valued as a software-infrastructure layer before they have a long public track record on margins, retention, or autonomous workflow quality.

  • CoreWeave signs an Nvidia A100 contract running through 2029: Tom's Hardware reports that CoreWeave has an A100 contract running through 2029, while its CEO says pricing for older-generation GPUs remains strong. Utilization, power availability, and workload fit can extend the economic life of older GPUs well beyond the pace of new chip releases.

  • Cerebras discloses OpenAI exercised all vested warrants for a 4.22% stake: Cerebras' filing says OpenAI exercised all vested warrants, representing an economic stake of roughly 4.22%. It is a signal of how model labs can secure accelerator access while gaining economic exposure to a supplier — but it is not an acquisition.

  • OpenAI previews Ultrafast for GPT-5.6 Sol: OpenAI is previewing Ultrafast for GPT-5.6 Sol; the company says the mode can reach up to 14x standard processing speed, or 750 output tokens per second. Access is initially limited to a select group of customers and powered by Cerebras. As latency becomes part of the product, useful work per second may matter as much as model intelligence.

  • Cursor speeds up cloud agents with background builds: Cursor says background builds make its cloud agents start three times faster at no additional cost. Pre-building development environments can remove the startup friction that makes long-running coding tasks slow and unpredictable.

  • Sakana Chat adds code execution for Japanese vibe-coding: Sakana AI says Sakana Chat is now free, requires no login, runs on Fugu and Namazu, and can execute code to create web apps, games, and tools from natural-language descriptions. Regional models may compete through local-language experience and low-friction product surfaces, not just leaderboard position.

> ONE PRACTICAL USE OF AI TODAY

Start with the outcome, not a giant prompt

When building an agent, many people start by writing an extremely long prompt. A better approach is to start with the outcome, have AI create a short plan, and review that plan before letting the system execute.

For a simple workflow:

  • Pick a recurring outcome, such as a weekly report.

  • Ask AI for a short plan covering inputs, steps, and outputs.

  • Review the plan before giving the agent permission to execute.

  • Run the workflow one step at a time and check the results before expanding it.

For a complex workflow, write the plan yourself and use the agent as an executor instead of giving it ownership of the objective.

This separates two decisions that are often mixed together: what result you want and how the agent should produce it. Once the outcome and plan are clear, debugging, reassignment, or switching models becomes much easier.

> WORTH READING

ANALYSIS & THESIS

TechRadar suggests evaluating an agent by whether it can pursue a goal, use tools, and operate within clear guardrails — not by trusting the product label. For buyers and builders, the key question is whether the system actually acts in an environment or simply answers better.

A paper from Microsoft researchers and collaborators identifies 307 skill-induced failures, including 125 functional failures and 182 efficiency regressions. Even relevant skills can push an agent toward an incorrect implementation or turn verification checklists into mandatory procedures that increase token use and runtime.

The lesson for anyone building an agent harness is not to judge a skill by whether it sounds useful. Run a matched no-skill or alternative-skill test, measure both success and cost, and make verification steps the default only when the data shows they help.