Skip to main content
Claude Code

Opus 4.6 Hands-On: I Tested It Three Real Ways

Probé Claude Opus 4.6 de tres formas reales — programación, investigación y trabajo creativo. Reseña honesta con resultados específicos y limitaciones.

9 min
Tiempo de lectura
1,649
Palabras
Publicado
Última revisión
Engr Mejba Ahmed

Escrito por

Engr Mejba Ahmed

Compartir Artículo

Opus 4.6 Hands-On: I Tested It Three Real Ways

I was halfway through debugging a beat 'em up game I had been building with Claude Code when the player health bar stopped rendering, and what happened next told me more about Opus 4.6 than any benchmark chart. Instead of asking me for context the way every previous model would have, it quietly tried three fixes on its own, found the root cause, patched it, and moved on. That behavior shift, from chatbot that writes code when asked to agent that solves problems unprompted, is the actual story of this model. I spent a week running it through three real workloads that eat my actual time: podcast post-production, game prototyping, and presentation building. Here is what held up and what did not.

Context for the release: Anthropic shipped Opus 4.6 on February 5, 2026, and OpenAI published GPT-5.3-Codex roughly half an hour later the same day. The timing was theatrical and deliberate. I will get to the comparison, but the more useful material is what the model does in real work.

Opus 4.6 Hands-On: I Tested It Three Real Ways - overview of what actually changed under the hood, test one: podcast post-production

What actually changed under the hood

Five improvements matter in practice, and three of them fix things that had been driving me crazy for months.

It holds instructions across long threads. Every Claude user knows the failure: a detailed system prompt, and forty messages later the model has drifted off your formatting rules. I ran a conversation past sixty exchanges against an 800-word instruction block, and Opus 4.6 was still following the constraints from message one. That sounds minor on paper; in practice it deletes an entire category of re-prompting.

It reads before it acts. First responses are noticeably slower, sometimes ten or fifteen seconds. But they arrive complete, because the model is cross-referencing the whole prompt instead of firing on paragraph one and missing the requirement buried in paragraph three. A ten-second wait for a correct answer beats an instant response you regenerate three times.

It does not give up on hard problems. During the game test I watched it attempt four separate solutions to a sprite rendering issue before landing the right one. Previous models threw their hands up after attempt one.

Thinking is adaptive. Simple question, instant answer. Architecture question, real deliberation. Across a workday that matching of effort to task saves genuine API money.

Simpler prompts win now. This is the counterintuitive one, and I got it wrong at first, so it gets its own section below.

Test one: podcast post-production

After every podcast episode I record, there is a miserable pile of work: show notes, YouTube titles, thumbnail concepts, pull quotes, cut lists. Ninety minutes on a good day. I feed Opus 4.6 a 45-minute transcript and an 800-word instruction prompt covering my title rules (curiosity-driven, under 60 characters, front-loaded keywords), thumbnail strategy, and per-platform social formats.

Results, honestly: of five YouTube title options, three were better than what I would have written, including one contrarian framing I had not considered. Thumbnail concepts came back specific (color schemes, text placement, emotional tone per title), not "show the guest's face with bold text." Show notes matched my spec exactly. It was not perfect: it flagged one segment for cutting that was actually the best part of the interview, and two social posts needed tone fixes. But because instruction retention holds, corrections were surgical, with no drift and no forgetting the format.

Net: post-production went from 90 minutes to about 20 per episode, a 78 percent reduction, and I am editing rather than rewriting.

Test two: a beat 'em up from a folder of sprites

I had a folder of pixel art collected over years: sprites, tilesets, character sheets, UI elements. I pointed Opus 4.6 at it and said, effectively, build me a game with these.

The first thing it did was the tell. It scanned and cataloged the assets, then asked three targeted questions: genre, framework, resolution. Not "tell me more about your project," but questions shaped by what it had already found. I said beat 'em up, Phaser 3, and let it pick resolution from the sprite dimensions. It chose 800x600, the right call.

Fifteen minutes later I had a complete Phaser 3 project: asset loading, character controller, punch, kick and jump mechanics, basic enemy AI, collisions, scoring. It did not start on the first run; an asset path issue and an animation timing bug. I typed "the game isn't starting," nothing else, no logs, and it diagnosed and fixed both in under two minutes.

Then the health bar moment from the opening. My entire bug report was "player HP bar isn't showing." The model walked the code, found the bar was rendering behind the game layer, tried repositioning (partial), tried a different rendering approach (partial), and finally identified a z-index conflict with the background tilemap. Fixed, autonomously, in three attempts. A z-index fix is junior-developer territory; the point is the behavior pattern, not the difficulty. Once you watch a model push through failure instead of punting, you start handing it harder problems, which is exactly the dynamic I lean on daily in my Claude Code agent-team workflows.

Asked for more enemies, it went back to the asset library, found sprites it had not used, and built three enemy types with distinct AI: fast melee, ranged, slow tank. Empty folder to playable prototype with multiple enemy types: about 45 minutes of my time, much of it spent playing the game between prompts. Not production-quality, but for prototyping and game jams, transformative.

Test three: a Cowork presentation

Cowork is Anthropic's desktop-app feature that works through a virtual machine, creating files and driving applications like a person would. When it launched I found it functional but rough: alignment issues, weird spacing, first-draft energy. So my expectations for a twenty-slide deck on Claude Code best practices, a topic I know well enough to grade the content, were modest.

The run surprised me. It asked about audience, length, and topic priority before touching a slide, then researched, wrote a visible to-do list, and organized the outline before generating anything. The slides came out clean: proper alignment, consistent spacing, readable sizes. Maybe three slides needed tweaks, versus nearly all of them a month prior. Most interesting: it ran its own visual QA pass afterward, catching and fixing alignment issues before showing me the result. Self-checking without being asked is new behavior.

Honest limits: visuals lean on icons and typography since Cowork has no image generation, fine for a technical deck, wrong for a client pitch. And I still could not confirm whether it supports Google Slides or only PowerPoint; if you are a Workspace shop, verify before building a workflow on it. For a fuller comparison of where Cowork fits next to the terminal, see my Cowork versus Claude Code breakdown.

What I got wrong about prompting it

When I got access, I deployed my best Sonnet-era prompts: long, explicit, every edge case spelled out, "think step by step," "be exhaustive." The outputs got worse. The model dutifully generated exhaustive edge-case analysis for tasks that did not need it, and lost the thread of what mattered.

Stripping prompts back to clean goal-and-context descriptions jumped the quality dramatically. Opus 4.6 already knows how to be thorough; instructing it to be thorough is like telling a senior engineer to remember to test their code. The lesson that has restructured my prompting since: describe outcomes, provide context, and get out of the way of the reasoning. This advice is model-specific and will age; the same shift got even sharper with the next generation, which I covered in how Opus 5 changed prompting again.

Opus 4.6 versus GPT-5.3-Codex, honestly

After extended time in both: Opus 4.6 wins daily coding work and zero-to-one builds. The planning, the question-asking before diving in, and the context awareness make it the better pair programmer for greenfield projects. GPT-5.3-Codex seemed to have an edge on gnarly deep bugs, the nested async race conditions and load-dependent leaks, though I flag that as a consistent impression across a dozen debugging sessions, not a measured result.

Both iterate so fast that any snapshot comparison is a historical artifact within weeks, which is why I keep re-running the same head-to-head on my own repos rather than trusting anyone's chart, mine included. The durable observation is the category shift: somewhere between Sonnet 4.5 and Opus 4.6, "AI as autocomplete" became "AI as autonomous problem-solver," and both vendors crossed the line the same week.

The numbers from one real week

  • Podcast post-production: 90 minutes down to ~20 per episode (78 percent)
  • Game prototyping: playable multi-enemy prototype in ~45 minutes of human time, against the 8 to 12 hours a manual Phaser build would cost me
  • Presentation: ~30 minutes through Cowork versus 2 to 3 hours manually, with visual quality still below a human designer
  • Debugging communication: roughly 70 percent less time spent explaining bugs versus Sonnet 4.5, because one-line reports were usually enough

Your mileage will vary with how your work maps to the model's strengths. And the price-to-performance for casual chat does not justify Opus over Sonnet; this model earns its cost specifically on sustained, complex technical work where context retention and autonomous debugging compound.

Where this leaves you now

A caveat this review owes you in 2026: Opus 4.6 is no longer Anthropic's frontier, and if you are choosing a model today, read my Opus 5 benchmarks breakdown alongside this. But the reason this post stays up is that the behavioral shift it documents, the week autonomous persistence became real, still describes how these models want to be used: fewer, simpler prompts, outcomes instead of prescriptions, trust calibrated by watching the model earn it.

Three months before this test I would have said we were years away from this level of autonomy. I was wrong, and I expect to be wrong again about the next ceiling. The model names in this post will keep aging out; the habits behind them — fewer prompts, outcomes over prescriptions, trust calibrated by observation — outlive every release. Those habits are what my AI School courses are built around, taught with the same workflows these reviews come from.

Publicidad
Coffee cup

¿Te gustó este artículo?

Tu apoyo me ayuda a crear más contenido técnico detallado, herramientas de código abierto y recursos gratuitos para la comunidad de desarrolladores.

Temas Relacionados

Engr Mejba Ahmed

Engr Mejba Ahmed

Engr. Mejba Ahmed builds AI-powered applications and secure cloud systems for businesses worldwide. With 8+ years shipping production software in Laravel, Python, and AWS, he's helped companies automate workflows, reduce infrastructure costs, and scale without security headaches. He writes about practical AI integration, cloud architecture, and developer productivity.

Artículos Relacionados

Ver Todos

Comments

Leave a Comment

Comments are moderated before appearing.

Learning Resources

Expand Your Knowledge

Accelerate your growth with structured courses, verified certificates, interactive flashcards, and production-ready AI agent skills.

Sample Certificate of Completion

Sample certificate — complete any course to earn yours

Engr Mejba Ahmed

Engr Mejba Ahmed

AI assistant · trained on my work

👋

Hey there!

Quick Actions

WhatsApp Direct line to me

Chat on WhatsApp

+880 1723 741224 · Replies within the hour on working days

Popular Questions

Engr Mejba Ahmed is connected
Engr Mejba Ahmed is typing...
Engr Mejba Ahmed avatar

✉ Want me to follow up? Drop your email

Engr Mejba Ahmed avatar

📞 Connect Directly

Choose how you'd like to reach me

WhatsApp

+880 1723 741224

Email

mejba.13@gmail.com

✓ Details sent! I'll get back to you shortly.

Powered by OpenAI

335+

Blog Posts

25

AI Courses

63

Projects

Services & Expertise

Pricing & Process

Learning & Resources

Connect & Support