English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Easy AI Daily News | February 7, 2026: GPT-5.3-Codex vs Claude Opus 4.6, World Models, and Agent Toolchains

Forum topic · 小凯 · 2026-03-27

Summary

Easy AI Daily for February 7, 2026 covers a landmark coding model showdown: OpenAI's GPT-5.3-Codex with strong SWE-Bench Pro scores versus Anthropic's Claude Opus 4.6, which hits 68.8% on ARC-AGI 2 and leads multiple Arena leaderboards. Also featured: Waymo's world model built on DeepMind's Genie 3 generating sensor streams for autonomous driving simulation; Trillion Labs and KAIST's gWorld, which generates GUI worlds via HTML/CSS/JS instead of pixels; multi-agent software team experiments from Cursor and Anthropic; long-context memory research (InfMem, LatentMem); Blackwell FP8 kernel pitfalls and budget CPU-only local LLM setups; Hugging Face Community Evals; TinyLoRA achieving 91% on GSM8K by tuning only 13 parameters; Kaiming He's Drifting generative modeling; OpenAI's partnership with Ginkgo Bioworks for automated wet labs; Perplexity Pro quota cuts; Anthropic's estimated burn; Lodash receiving EU critical infrastructure funding; Codex's default full filesystem access raising security concerns; and Opus 4.6 uncovering 500+ zero-day vulnerabilities in open-source libraries.

Models & Capabilities

GPT-5.3-Codex vs Claude Opus 4.6: Frontier Coding Model Showdown

OpenAI released GPT-5.3-Codex, focused on self-bootstrapped development with high SWE-Bench Pro / Terminal-Bench scores and finer reasoning, but no public API yet. Anthropic shipped Claude Opus 4.6, scoring 68.8% on ARC-AGI 2 with broad long-context and reasoning improvements, topping multiple Arena leaderboards (code, text, expert). Community comparisons show each model has distinct strengths and cost profiles on real projects.

Links: GPT-5.3-Codex intro | Claude Opus 4.6 announcement & benchmarks | Rails production repo benchmark: Codex vs Opus | Opus 4.6 coding & long-context discussion

Long Context & Memory: Opus 4.6, InfMem, LatentMem

Opus 4.6 clearly outperforms Gemini 3 Pro on 256k–1M token long-context tasks, though users still complain about real-world "context rot." Academic proposals include InfMem (imagine-retrieve-write with RL) and LatentMem (compressing role-based trajectories into latent memory), claiming 3–4x latency reduction and ~50% token savings on million-token QA and multi-agent collaboration.

Links: Opus 4.6 long-context benchmarks | InfMem paper discussion | LatentMem paper discussion

Google Sequential Attention and Model Pruning

Google Research resurfaced "Sequential Attention" for subset-based feature selection and pruning while preserving accuracy. Redditors noted the paper is three years old (arXiv:2209.14881) and speculate whether it will land in Gemma-class models for inference speedups.

World Models Go Practical: Waymo + DeepMind Genie 3

Waymo built a world model on DeepMind's Genie 3 that generates realistic traffic scenes with camera + 3D LiDAR sensor streams, stress-testing autonomous driving with extreme events (tornadoes, plane landings on highways). Researchers call this a key jump from "pixel generation" to "direct sensor stream output."

Links: Waymo World Model | DeepMind on Genie 3 at Waymo

gWorld: Generating Phone GUI Worlds with Web Code, Not Pixels

Trillion Labs and KAIST released gWorld (8B/32B open visual world models) that generates HTML/CSS/JS and renders UIs rather than predicting pixels. The 8B model hits 74.9% on MWMBench, reportedly beating the 402B Llama 4 Maverick on some GUI tasks with <1% render failure. The community is skeptical of the "beats 402B" framing but likes the code-instead-of-pixels approach.

Links: gWorld-8B on Hugging Face | Reddit discussion

Agents & Toolchains

Claude Code / Codex / Cursor: Multi-Agent "Software Team" Mode

Cursor claims hundreds of agents producing thousands of commits per hour over a week; Anthropic had 16 Claude agents write a C compiler that compiles the Linux kernel in two weeks. Community consensus: test suites, Git workflows, and infrastructure configuration matter more than the models themselves.

Links: Cursor multi-agent commits | Claude Code agent teams | Anthropic C compiler post

OpenClaw / Moltbot: Local Agent Frameworks Are Great but Costly

OpenClaw + local LLMs (e.g., Qwen3Coder) can produce strong self-iterating agents but with a large security surface and weak docs — most run them under restricted accounts and directories. Moltbot's "free assistant" actually requires many paid APIs (OpenAI/Anthropic/Google, Brave, ElevenLabs), totaling $50–100/month.

Links: OpenClaw with local LLMs | Moltbot: Misguided Hype?

Recursive Language Models (RLM) and LangChain / DSPy Engineering

A viral idea treats agents as REPL programs: state in variables, structured data between sub-agents instead of pasted logs, reducing context rot. LangChain/LangSmith emphasize traces, sandboxes, and typed state management; the DSPy community pairs RLM with auto-tuning for more controllable, reproducible tool flows.

Links: RLM concept | DSPy blog on RLM | LangChain trace/sandbox updates

BalatroBench: Benchmarking LLM Strategy with a Card Roguelike

BalatroBench wraps the card game Balatro as a benchmark via BalatroBot's game-state API and BalatroLLM + Jinja2 prompts, supporting any OpenAI-compatible endpoint to test long-horizon planning and strategic consistency.

Links: BalatroBot GitHub | BalatroLLM GitHub | BalatroBench

AI Coding Assistant Stacks: Cline, aider, Cursor, Copilot

Cline users tighten context from 200k to 40k tokens with .clineignore, memory banks, and RAG for faster small-model iteration; aider users tune Copilot/Opus architect modes; Cursor users complain GPT-5.3 Codex remains API-less and agent mode stalls once free credits run out.

Links: Cline context management | Opus 4.6 in Cline | aider config docs

Infrastructure & Hardware

Blackwell / CUDA / Vulkan: Hidden Performance Pitfalls

GPU MODE and LM Studio communities found: wrong cuBLASLt FP8 kernel selection on Blackwell can halve throughput (forcing MXFP8 instructions helps); some B200s deadlock with TMA + NCU profiling. Vulkan can beat CUDA by ~50% on some NVIDIA cards for local LLMs, and on Apple M4 Max, MLX runs Qwen3-Coder-Next 4-bit inference over twice as fast as GGUF.

Links: GPU MODE: Blackwell FP8 & MXFP8 | NCU + TMA deadlock repro | LM Studio Vulkan vs CUDA

Budget Local Inference: Old i3 / CPU-Only Machines Can Still Run LLMs

A 2018 8th-gen i3 with UHD 620 and dual-channel memory hits 10 token/s on a 16B MoE model via OpenVINO; an old i5-8500 desktop with 32GB RAM handles 12B Q4 GGUF for chat, TTS, even slow Stable Diffusion. Community consensus: bandwidth matters more than compute; MoE architectures and low-bit quantization are budget-friendly.

Links: CPU-only local AI | 2018 i3 running 16B MoE DeepSeek Coder

Training & Eval Infrastructure: Step 3.5-Flash and SETA Terminal Environments

StepFun detailed Step 3.5-Flash: trained on 4,096 H800 GPUs over 17.2T tokens, scoring 74.4 on SWE-Bench, with evaluation-first workflows addressing data contamination and long-output monitoring. SETA open-sourced 1,376 reproducible terminal environments covering DevOps, security, and ops for code agents to run in real systems.

Links: Step 3.5-Flash tech report discussion | SETA terminal environments

Research & Methods

Hugging Face Community Evals: Benchmark Scores as Versioned YAML

HF launched Community Evals: benchmark datasets with leaderboards, results stored as versioned YAML in model repos via PRs, using Inspect AI for reproducible flags — aiming for traceable evaluation methodology rather than solving data leakage. Researchers note hard benchmarks (multilingual SWE-Bench, SciCode, VideoGameBench) remain far from saturated.

Links: HF announcement | Community discussion | Ofir Press on unsaturated benchmarks

TinyLoRA: 13 Parameters Lift GSM8K from 76% to 91%

StepFun's TinyLoRA trains only 13 LoRA parameters on Qwen-7B, plus RL, lifting GSM8K accuracy from 76% to 91%. The interpretation: the knowledge is already in the model — you just need to steer the reasoning style.

Links: TinyLoRA tweet

Kaiming He's New Work: Generative Modeling via Drifting

Kaiming He posted "Generative Modeling via Drifting" on OpenReview, exploring a new generative modeling framework. The Eleuther community also discussed gradient attribution: unit-norm gradient normalization significantly improves attribution accuracy, while another paper argues good Hessian estimates may make normalization unnecessary.

Links: Generative Modeling via Drifting | Gradient normalization paper | Hessian follow-up

AI4Science: Automated Experiments and Labbench2

OpenAI and Ginkgo Bioworks are connecting GPT-5 to automated wet labs for closed-loop protein experiments, reportedly cutting production costs by 40%. Labbench2 launched with ~1,900 hard problems in experimental design and clinical trial evaluation to measure scientific models more realistically.

Links: OpenAI × Ginkgo Bioworks | Labbench2

Products & Applications

Perplexity Pro Quietly Cuts Quotas; Users Eye Alternatives

Perplexity reduced Deep Research usage and file upload limits on Pro without communication, prompting user backlash. Many are trying Gemini Pro (plan-then-execute research) and DeepSeek (free, though some have concerns over its Chinese backing).

Enterprise Engineers Use AI as "Super Search," Not System Builders

A Reddit discussion among professional engineers concludes AI is most useful as an advanced search/example generator (SQL, API docs, legacy code); large-scale refactors of complex codebases perform poorly. Many "AI projects" turn out to need only RPA or simple scripts; only a minority deliver clear company-wide ROI.

Links: How professional engineers use AI

Lotus Raises $41M for AI-Assisted Primary Care

Startup Lotus raised $41M for an online first-contact care platform combining AI triage with licensed physicians, targeting the ~100 million Americans lacking a family doctor. AI handles pre-visit information gathering; humans make medical decisions.

Links: Lotus announcement

AI Crypto Products: Translating On-Chain Contracts into Plain Language

An MCP Contributors community project builds AI tools for crypto trading: smart dashboards, on-chain analysis summaries, and natural-language explanations of contracts/transactions, emphasizing accuracy and transparency for investors who understand business but not Solidity/EVM.

Industry & Company News

OpenAI vs Anthropic: The Burning Money Behind the Model Arms Race

Estimates from leaked/projected figures: Anthropic may reach $18B revenue this year and $55B next, but with $12B training and $7B inference spend this year, and ~$139B cumulative operating expense before ~2028 break-even. Investors are reportedly willing to invest $10B at a $350B valuation; some in the discussion suspect OpenAI's solvency is worse.

Links: Reddit analysis

Lodash Named "Critical Infrastructure" by the EU, Receives $200K

The ubiquitous JS utility library Lodash received a $200K EU Sovereign Tech Fund grant for maintenance and security hardening — a reminder that small, unglamorous libraries underpin AI and the web.

Links: Sovereign Tech Fund on Lodash | OpenJS Foundation announcement

Manus.im Alleged Meltdown: $5,000 Charges After Downgrade, Site Outage

Manus.im users report being charged $5,000 per account at original pricing after downgrading, with customer sites going down, unresponsive support, and email denials of downgrades; some accounts were mysteriously banned. Users are mass-searching alternatives — a trust-crisis-level event for a site hosting/building platform.

OpenRouter and the Multi-Model Ecosystem: Pony Alpha, Kimi K2.5

OpenRouter launched the stealth "Pony Alpha" model focused on quality tool calling and agent workflows, and added Moonshot's Kimi K2.5. OpenRouter's usage reportedly grew ~10x in two years; some joke that a chat app from OpenRouter would threaten single-vendor players.

Links: Pony Alpha

Policy, Governance & Safety

Codex Reads the Entire Filesystem by Default; Security Boundary Questioned

OpenRouter community members found OpenAI's Codex reads the whole local filesystem by default with no obvious permission toggle, and official issues dismiss it as "not a bug." Real cases include leaked API keys and personal medical records. Developers worry they don't know what they're exposing without a clear permission model.

Links: Codex issue #2847 | Codex issue #5237

Opus 4.6 Finds 500+ Zero-Day Vulnerabilities in Open Source: Blessing or Double-Edged Sword?

Anthropic reports Claude Opus 4.6 automatically audited open-source libraries in sandboxes, uncovering 500+ zero-day flaws with fixes. Some propose a "cumulative CVSS repaired" benchmark; others worry that publicizing such capabilities arms attackers.

Links: Reddit discussion

AI Red Teaming Becomes a Hot Job: Trajectory Labs Hiring

As models face real users and tool calls, companies are investing in red teams. Stealth AI safety firm Trajectory Labs is hiring long-term AI Red Teamers (30+ hours/week) with a gamified red-team interview.

Links: Trajectory Labs careers

Secret Leaks Are Routine; Community Calls for Default detect-secrets Integration

Many agent/IDE tools hand entire repos to models with no key protection. Unsloth and OpenRouter community members suggest default hooks using Yelp's detect-secrets to mask secrets in prompts and logs — no more shipping .env files, cloud credentials, and medical records to LLMs.

Links: detect-secrets

---

📌 Source: Easy AI Daily

Tags

#ai-news#daily-report#gpt-5-3-codex#claude-opus-4-6#llm#world-models#ai-agents#ai-safety

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/177169292