this-week-in-agents

What changed this week

If you only track three headlines from July 2026, track these:

1
xAI launched Grok Build (July 8) with Grok 4.5 — a model trained alongside Cursor’s team, available in Grok Build, Cursor (all plans), and the xAI console at $2/$6 per million tokens. It is the fastest-rising newcomer on the agent leaderboards.
2
OpenAI’s GPT-5.6 family (Sol, Terra, Luna) hit general availability, with Sol Ultra heading into the Codex client. Codex now reports more than 5 million weekly users — and over 85% of OpenAI itself uses it daily.
3
Gemini CLI is becoming Antigravity CLI. Google’s famous free tier of 1,000 requests/day for individuals ended June 18 as the tool transitions into the Antigravity platform — which remains free for individuals, with a bet on parallel agents.
✦ The big picture: benchmark scores across the top agents are now within a few points of each other. The differentiators in 2026 are token efficiency, context strategy, customization files (SKILL.md / AGENTS.md), and how well each tool delegates work you don’t want to babysit.

the-landscape

The big six, side by side

AgentModel (default)Terminal-Bench 2.1SuperpowerWatch Out For
Codex CLIGPT-5.5 / 5.6 Sol83.4% (#1)Cloud sandboxing, unified CLI + IDE + cloud experienceTied to the OpenAI ecosystem
Claude CodeClaude Opus 4.878.9%Reasoning depth (69.2% SWE-bench Pro), 1M context, hooks, Routines, ~5.5x fewer tokens than IDE agentsNo free tier — needs Pro/Max or API billing
Gemini CLI / AntigravityGemini 3.1 Pro70.7%Massive raw context window; free for individuals via AntigravityMid-transition; individual free tier on classic CLI ended June 18
GitHub CopilotMulti-model pickerDeepest editor integration; agent mode + cloud agent + CLI in one subscriptionMost power hidden behind non-obvious features
Grok BuildGrok 4.5Speed and price ($2/$6 per 1M tokens); co-designed with CursorTen days old — patterns still forming
opencodeAny (BYOK)Most-starred open-source agent (~180k ★, MIT); model-agnostic, freeYou pay per-token for whichever model you plug in

One number worth internalizing: token efficiency compounds. Claude Code using roughly 5.5x fewer tokens than a typical IDE agent means the real monthly cost difference is much bigger than the sticker price suggests — and the same task finishes with less context churn.


tool-01

OpenAI Codex — the benchmark ceiling

>_
Codex CLI + Codex Cloud
GPT-5.6 Sol · Cloud sandboxes · Async PRs · CI/CD via API
#1 Terminal-Bench 5M+ Weekly Users Included with ChatGPT Plans

Codex is the volume leader and the current benchmark leader. Its bet is cloud sandboxing — every task can run in an isolated environment, locally or async in the cloud, and come back as a pull request. If you already pay for ChatGPT, Codex is effectively included, which makes it the lowest-friction entry point of the big six. It is also accessible programmatically via the API, so agentic coding drops into CI/CD pipelines cleanly.

Terminal — Install Codex CLI
npm install -g @openai/codex

# Sign in with your ChatGPT account, then:
codex "add rate limiting to the /api/v2/search endpoint, follow existing middleware patterns"
>
openai/codex
Codex CLI — ~94k stars. Terminal agent that reads, writes, and executes code locally or in cloud sandboxes

tool-02

Claude Code — reasoning depth and token thrift

Claude Code
Opus 4.8 & Claude 5 family · 1M context · Hooks · Routines · Subagents
Best SWE-bench Pro Token Efficient SKILL.md Native MCP Deep Integration

Claude Code is the tool engineers mention most when the task is complex multi-file refactoring or architectural work. Three capabilities set it apart in mid-2026: a 1M-token context with unusually good context efficiency (it loads less but uses it better), a hook system for event-triggered automation, and Routines — scheduled or GitHub-triggered runs, effectively cron for your coding agent. It is also the origin of the SKILL.md convention that nearly every other agent now reads.

Terminal — Install Claude Code
npm install -g @anthropic-ai/claude-code

# In your repo:
claude
> think hard, then refactor src/pipeline/ to remove the circular
  dependency between loaders and validators. Run tests after each file.
Daily-Dose Prompt — Morning Repo Review
Review everything merged to main in the last 24 hours. Summarize the changes by area, flag anything that touches auth or payment paths, and list tests that were added or should have been. Keep it under 20 lines — I read this with coffee.
anthropics/claude-code
~135k stars. Terminal-native agent with hooks, subagents, Routines, and full MCP + SKILL.md support

tool-03

Gemini CLI → Antigravity — the whole-monorepo play

Gemini CLI / Antigravity CLI
Gemini 3.1 Pro · Largest raw context · Parallel agents · Free for individuals
Monorepo Context In Transition Antigravity Free Tier

Gemini CLI’s identity has always been context volume — when you need to hold an entire monorepo in the window at once, it wins. The story right now is the transition: the classic CLI’s individual free tier (the famous 1,000 requests/day) ended June 18, and the product is folding into Antigravity, Google’s parallel-agent platform, which stays free for individuals. If you were on the free CLI, plan the migration now rather than in a crunch.

google-gemini/gemini-cli
~106k stars. Open-source terminal agent for Gemini — watch the repo for Antigravity migration guides

tool-04

GitHub Copilot — the one already in your editor

Copilot: Agent Mode + Cloud Agent + CLI
Multi-model picker · NES · MCP · copilot-instructions.md
Deepest IDE Integration Model Choice One Subscription

Copilot’s advantage is surface area on one subscription: inline completions with Next Edit Suggestions, agent mode for multi-file work, a cloud agent that turns GitHub issues into PRs, and a CLI with its own plugin marketplace — plus a model picker that includes Claude and GPT models, so you’re not locked to one brain. Most developers still use a tenth of it. I wrote the full deep-dive on the hidden 90% — custom instructions, prompt files, agents, MCP, /chronicle, Autopilot — in my GitHub Copilot Hidden Tricks guide. If Copilot is your daily driver, start there.

github/awesome-copilot
175+ agents, 208+ skills, 176+ instruction files — the official community customization hub

tool-05

Grok Build & the open-source wave — the disruptors

Grok Build (launched July 8) is xAI’s entry: Grok 4.5, trained alongside Cursor’s team, priced aggressively at $2/$6 per million tokens, and available inside Cursor on all plans from day one. Ten days in, it’s too early for verdicts — but the price point alone will pull experimentation from every budget-conscious team.

Meanwhile the open-source side has quietly become the biggest story of the year. opencode passed 180k GitHub stars — more than any vendor CLI — by being MIT-licensed and completely model-agnostic: bring your own key, point it at Claude, GPT, Gemini, Grok, or a local GLM 5.2 (now the strongest open-weight coding model), and the harness is free. Cline, Aider, and Kilo CLI follow the same philosophy.

sst/opencode
~180k stars, MIT. The most-starred open-source coding agent — model-agnostic terminal TUI, BYOK
cline/cline
Open-source autonomous coding agent for VS Code — free harness, any model, human-in-the-loop diffs
Aider-AI/aider
The original git-native pair programmer — every AI change is a clean commit you can review or revert

the-glue

The portability layer — write once, run in every agent

The most practical development of 2026 isn’t any single tool — it’s that your customization now travels. Three conventions are supported nearly everywhere:

ConventionWhat It CarriesRead By
AGENTS.mdRepo-level rules: stack, conventions, build commandsCodex, Claude Code, Gemini, Copilot, opencode, Cursor
SKILL.mdReusable skills — instructions + scripts an agent can invokeClaude Code, Codex, Gemini CLI, Copilot Agent Mode, Cursor
MCP serversExternal tools: GitHub, Playwright, Postgres, Firecrawl…Effectively all of them — same server config everywhere
✓ The move: invest your setup time in AGENTS.md + a skills folder + an MCP config, not in any one vendor’s proprietary settings. Switch agents next quarter and your entire setup comes with you. Vendor lock-in in 2026 is a choice, not a default.

daily-driver-recipes

Which agent, for which task, today

Deep Work
Complex refactor or architecture change → Claude Code
Reasoning depth plus token efficiency means fewer wrong turns on multi-file changes. Use extended thinking (“think hard”) for the gnarly ones, and hooks to auto-run your test suite after every edit.
1M ContextHooksSubagents
Fire and Forget
Well-defined bug or dependency bump → Codex Cloud or Copilot Cloud Agent
Assign it, close the laptop, review the PR later. Cloud sandboxes make this safe; clear reproduction steps make it reliable. Ambiguous tickets still need a human first.
AsyncPR BackSandboxed
Whole-Repo Questions
“Where does X happen across this monorepo?” → Gemini / Antigravity
Raw context volume wins for repository-wide comprehension. Load the monorepo, ask structural questions, get answers grounded in everything at once.
Max ContextFree Tier
Flow State
In-editor speed and completions → Copilot (or Cursor)
Nothing beats inline NES + partial accept for staying in flow. Add copilot-instructions.md so the completions know your conventions, and switch models per task from the picker.
NESMulti-Model
Budget / Control
Free harness, your choice of brain → opencode, Cline, or Aider
MIT-licensed harnesses, bring your own key, route to whichever model is cheapest for the task — including local open-weight models like GLM 5.2 when the volume justifies the hardware.
Open SourceBYOKLocal Models

summary

Key takeaways

The harness is the product now

Frontier models converged; the wrapper decides your experience. Evaluate agents on context strategy, hooks, delegation, and token efficiency — not leaderboard decimals.

Run two, not one

The strongest pattern in real teams: one interactive agent for deep work (Claude Code or Codex CLI) plus one async agent for delegation (a cloud agent). They complement, not compete.

Make your config portable

AGENTS.md, SKILL.md, and MCP configs work across nearly every tool. Build your customization there once, and every agent you try next inherits it.

Watch the open-source line

When the most-starred agent on GitHub is MIT-licensed and model-agnostic, the pricing power of vendor CLIs has a ceiling. Grok Build’s $2/$6 pricing is the first shot; expect responses.

VG
Vijay Gokarn
Follow