惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
有赞技术团队
有赞技术团队
H
Help Net Security
V
Visual Studio Blog
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Use Cursor's Composer 2, Gemini, Grok & More in Cl...
David Veselý · 2026-04-29 · via DEV Community

Why I stopped trusting Claude to review Claude. 8 prompts I run instead.

TL;DR: Install Cursor's CLI, then npx skills@latest add Vesely/skills/cursor-agent. In Claude Code, ask things like "review this branch via cursor-agent with composer, gemini, and gpt-5.5 in parallel". Three models look at the same problem at once. Claude merges what they find. Works with any model in cursor-agent --list-models, not just those three.

Asking Claude to review the code Claude just wrote is like asking someone to grade their own homework. They will find what they were already looking for. Multi-model review loops are harder to fool because the sycophancy bias does not survive crossing providers.

So I started fanning work out to other models from inside Claude Code. The skill wraps Cursor's headless cursor-agent CLI. Claude Code starts the jobs in parallel, waits for the answers, then merges the useful parts.

Setup

You need Cursor's CLI installed and a Cursor account. Install the CLI:

curl https://cursor.com/install -fsS | bash

Enter fullscreen mode Exit fullscreen mode

Run agent once to log in. Then add the skill in Claude Code:

npx skills@latest add Vesely/skills/cursor-agent

Enter fullscreen mode Exit fullscreen mode

The skill defaults to read-only mode and never writes to your repo. A fetched answer can look but not touch.

8 patterns I actually use

1. Code review before merge

Anything I'm about to push, especially branches Claude wrote most of.

Use /cursor-agent to review the recent changes with composer-2, gemini-3.1-pro, and gpt-5.5 in parallel. Real issues only, file:line references, no nitpicks. Merge the findings: what all three flagged, where they disagreed, what only one saw.

2. "Did Claude actually do what it said?"

When the summary feels too smooth.

Ask /cursor-agent with grok to compare Claude's summary against the recent diff and test output. Flag anything in the summary the diff or tests don't support.

3. Architecture and implementation plan review

Before letting Claude write a single line on something non-trivial.

Ask /cursor-agent with gpt-5.5 in plan mode to critique the plan in this doc. Where am I over-engineering? What risks am I underweighting? Be blunt.

4. Security review across models

Auth, user input, file paths, anything touching shell. Each model spots different attack surfaces.

Use /cursor-agent to security-review the recent changes with composer-2, gpt-5.5, and gemini-3.1-pro in parallel. What's the worst input a user could send? Where am I missing defensive checks? Real risks only, no theater. Merge what each model caught and where they disagreed.

5. Copy and text review

Anything user-facing or public — landing pages, error messages, docs, emails.

Ask /cursor-agent with gpt-5.5 to read the draft in this file. Where does it sound stiff or generic? Which sentences sound polished but say nothing? Suggest sharper variants for the weakest few.

6. "Which variant should I pick?"

Two or three options on the table and I'm fence-sitting.

Ask /cursor-agent with gpt-5.5 to rank the three options in this doc. Which would you pick and why?

7. "Are you really happy with that?"

Claude says it's done and something feels slightly off. A workflow that almost reads right. Code that compiles but smells.

Ask /cursor-agent with composer-2 to look at the recent output cold. I think it's wrong but I can't say why. What would you change?

8. Stuck on an issue, need different ideas

Thirty minutes of debugging and Claude and I are circling the same hypotheses. Kimi gives an off-axis read from outside the usual bubble.

Use /cursor-agent with gemini-3.1-pro and kimi-k2.5 in parallel. Look at the error and what I've already tried in this thread. What are the top three things I might be missing? Don't repeat what I've ruled out.

My go-to second models

A few months in, my defaults have settled. GPT-5.5 became my go-to for both code review and copy, sharp feedback without padding. Composer 2 is the fast one, called whenever I'm impatient. Codex stays out on purpose; for GPT-5.x reviews I run the standalone codex CLI directly.

What's your favorite second opinion? Which model do you reach for on code review, and which on copy? Drop it in the comments. Curious where mine breaks down for someone else.