
OpenAI tells me they signed the Nvidia–Microsoft open-source/open-weights AI model letter today. What an amazing turn of events. Your move, Anthropic!
Andrew FG
51 posts

@Andrew_FG_AI
🌍 Angel Investor | CEO of AEER Platform Inc & @fg_wallet Web3, FinTech, AI

OpenAI tells me they signed the Nvidia–Microsoft open-source/open-weights AI model letter today. What an amazing turn of events. Your move, Anthropic!

Opus 5, effort ultracode, is testing software changes.
Me: How can it even happen that the agents destroy each other's work?!
Opus 5: That was a flaw in my setup, not mysterious agent behavior.
All 17 agents ran in the same working directory — one Git tree, one filesystem. And I had put this into their instructions: "Use git stash/git stash pop to check whether the test was already failing before your change." But git stash is repo-global, not file-scoped: when agent A stashes, every modified file disappears — the work of the other 16 agents mid-flight, and my own uncommitted meta-test rewrite along with it. On pop, the tree looks different from what it did at stash time, so you get conflicts, stale states, or no pop at all. Result: four orphaned stashes and files reverted to HEAD.
So I handed them a repo-global command inside a shared workspace. The workflow tool has isolation: "worktree" for exactly this case — every agent gets its own checkout. That is what I should have used. Alternatives: never give agents repo-global Git commands, only strictly file-scoped ones (git diff --

yesterday i put claude code on a VPS and then locked it down like rob here so i could code from my phone securely on some of my projects i was so damn excited about it, finally i could not bring my laptop with me everywhere but so far its been awful and not fun. cant copy paste things from a terminal on phone. images dont paste. the lines im reading keep shifting as new info comes on screen. i have to be a caveman and ls/cd in ubuntu from a phone so now i will come up with my own solution instead or ill rig up some always on device to claude remote control and see if i can finally draft support tickets and resolve from my phone or ipad later today without it taking 10x longer than normal from my pc the lesson here for me is that my initial thoughts were right, coding on a phone is not very fun! but i think it would be solved if i can use claude app on all places and have it synced, that would be the ideal. and all of it is synced based on ONE core device (my docked mac)

The Claude Security plugin for Claude Code is now available in beta. Scan your changes for vulnerabilities before you commit, or run a full scan across your codebase, all from your terminal on the Claude inference you already run.

Boris Cherny just dropped 7-page PDF on Graph Engineering - how 4 Claude prompts replace 4 trained ML models The twist: your agent's memory dies with the context window. A knowledge graph makes it permanent - and now you build one with prompts, not ML engineers. here's 4 prompts, step by step: prompt 1 → extraction - Haiku pulls entities + relations - one call per doc - no NER, no labeled data prompt 2 → resolution - Sonnet merges duplicates string matching will never catch - two different names, same person prompt 3 → summarization - Sonnet builds profiles from multiple sources - facts that never appeared in the same document prompt 4 → querying - feed the graph to Sonnet - every answer cites a specific edge - no hallucination how to wire this into agents today: step 1 → shared memory for multi-agent teams - workers read/write one graph - orchestrator's context stays clean step 2 → grounding layer for eval loops - evaluator checks facts against graph edges, not vibes the result: one Pydantic schema replaces weeks of ML training per domain - precision 1.00 - 10k docs cost under $10 this 7-page PDF is what comes after loop engineering bookmark this, then read the article below ↓

Grok 4.5 token volume is surging on OpenRouter, breaking into the top 10 for closed models today beating out GPT 5.6 Sol and Fable 5. Previously the most used model was Tencent’s Hy3 (free version), whose promotional period ended on July 21. It seems Grok 4.5 is seeing migration from cost conscious users since then.

Anthropic engineer: "Stop using Claude Code as autocomplete. Build the workflow once. Let the agent handle the work." 00:00 - From autocomplete to real agents 04:50 - The agentic loop behind Claude Code 14:07 - CLAUDE.md as Claude's project memory 26:53 - Why planning comes before execution 33:31 - A real task from brief to commit 54:46 - Skills vs CLAUDE.md Most developers still use Claude Code like a smarter autocomplete. The old workflow is prompting. The new workflow is building loops. This 59-minute watch is worth more than most paid Claude Code courses. Bookmark and watch it today Then read the step-by-step guide below

Anthropic engineer: "You're not supposed to prompt Claude. You're supposed to build a system that prompts itself." In 45 minutes she shows exactly how to build an agent that improves itself. Most people are still doing all of this by hand. Watch the session, then save the guide below.

this is actually insane.... someone put 154 ready-made Claude Code subagents into a single free GitHub repo. code reviewers. Security auditors. Language specialists. Infra agents. the setup agencies charge $5k to build, just sitting there, open source. and the details are genuinely absurd: > 154+ subagents across 10 categories, all production-ready > each one auto-routes itself to the right Claude model to balance cost and quality > every agent runs in its own isolated context window, no cross-contamination installs as a plugin with one command, no manual setup drop them in a repo and your whole team runs the same specialists

Anthropic Applied AI engineer: "Claude Code is a great coding agent because Claude is really good at code, but what we've done with Claude Code is we've just given Claude access to a computer." He cut an agent from a 400-line system prompt to 15 lines, 12 tools to 3. Evals jumped from 62% to 92%. 45 minutes of pure insight from the team that builds agents with Anthropic's biggest customers. Watch it, then read the full guide on AI in brownfield codebases below.


Anthropic just released a free course on loop engineering with Fable 5 00:00 - how Claude Code works under the hood 05:01 - the agentic loop explained 16:21 - the function that 99% of devs ignore 19:01 - why voice beats writing 32:34 - automatic code review with draft PRs 58:39 - Fable 5 for work that's not code This free course replaces any paid Claude Code tutorial. Bookmark it for later.

Anthropic just benchmarked “Fable 5 orchestrates, cheap models execute” 96% of Fable 5’s performance for 46% of the cost. The workflow: Fable 5 plans, Sonnet 5 executes. BrowseComp: 86.8% vs 90.8% accuracy. Nearly the same output for less than half the bill. You can run it in Claude Code with 3 built-in features: 1/ Subagent model pinning. Create a file in ~/.claude/agents/ with model: sonnet. That agent runs at Sonnet rates no matter what your main session uses. 2/ Effort levels per agent. Anthropic’s own guidance says low effort on Fable often matches previous-gen max effort. Recon roles at effort: low cost almost nothing in quality. 3/ A CLAUDE.md delegation policy. Tell your main session what to hand off and to whom. Use role names, not model names. Nothing breaks when models rotate. One gotcha worth knowing even if you build nothing: Since v2.1.198, the built-in Explore subagent inherits your main session model. Running Fable or Opus as your daily driver? Every background search bills at that tier. Fix: create a user-level agent named Explore with model: haiku. They tested a second pattern too. Sonnet as executor consulting Fable as advisor. That hit ~92% at ~63% cost on SWE-bench Pro (coding benchmark). The orchestrator split won on both axes. Quick start if you want zero config: /model opusplan. Opus plans, Sonnet executes, done. Full multi-role version with 6 agents (haiku scouts, sonnet executor, opus judgment, adversarial verifier, security role): link in reply.

A 1,000,000-token window. The model actually holds 600,000. Sierra's Head of Product (agents for half the Fortune 20) spends 1:27 on what to do about it: 00:00 How an agent actually gets built and shipped 11:04 Meeting the model on its turf, not yours 32:22 What the agent sees at the moment of action: data, not a dump 40:00 Context engineering: everything it needs, nothing more 41:38 "Whenever you think the model's too dumb, the model's actually too smart" 46:13 Multi-agent systems are a trap: you just ship your org chart 57:03 Memory as a first-class primitive, not a patch 1:02:47 Why there is still no breakout memory company These 1.5 free hours replace 10 paid courses on context engineering. Context is not a bucket. The more you dump in, the dumber the agent gets. Watch today, then read the article above.

An Anthropic engineer just dropped a 30-minute masterclass on context engineering, the real lever behind agents that learn: - 00:00 – Why context beats a smarter model - 03:30 – The 1-year timeline: CLAUDE.md, memory tools, skills - 11:00 – Memory as a file system (today's best practice) - 17:30 – Production guardrails: versioning, concurrency, permissions - 23:00 – Dreaming: agents that fix their own memory in the background This 30-minute talk will replace a $2,000 agent-memory course. Watch it today, then read how to make Claude loop and fix its own work in the article below.

Andrew Ng just released a 2-hour course on building agentic skills from scratch with Anthropic: • 00:00 – How to build agent skills with Claude • 22:32 – Claude pre-built skills for AI agents • 41:07 – Agentic skills vs tools, MCP, subagents • 01:06:06 – Skills for long-running agents This 2-hour watch will replace 10 paid courses on building agents, by Anthropic themselves. Watch it today, then read how to build self-improving agentic systems in the article below.

CLAUDE CODE JUST BECAME MULTIPLAYER, WITH PEOPLE AND AGENTS WORKING IN THE SAME TERMINAL.

the agent wars are over and code won Lilian Weng's harness review shows what actually works: most "agents don't work" papers used gpt-4 era models that couldn't detect failures. turns out programming languages are just superior for deterministic context engineering my take on what happens next: general harnesses (Claude Code, Codex) will lose to specialized ones. being general purpose makes you slow at specific tasks frontier models? critical for development. but production is where you optimize for cost and latency, not raw intelligence

imo evals are lagging indicators. here’s my take:

Anthropic engineers just showed how they build apps with AI. Not one agent. A loop of agents: → Planner → Builder → Judge They keep cycling until the app actually works. The winners won't have the smartest model. They'll have the best feedback loop. 40 minutes from the team behind Claude Code. Watch it👇