claude-opus-4-5-guide

Comprehensive guide to Claude Opus 4.5, Anthropic's most intelligent model with effort parameter for reasoning control. Covers model capabilities, benchmarks, effort levels (high/medium/low), hybrid reasoning, and model selection. Use when working with Opus 4.5, optimizing reasoning depth, choosing models, or understanding effort parameter trade-offs.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "claude-opus-4-5-guide" with this command: npx skills add adaptationio/skrillz/adaptationio-skrillz-claude-opus-4-5-guide

Claude Opus 4.5 Guide

Overview

Claude Opus 4.5 represents Anthropic's most capable and intelligent model, released November 24, 2025. It combines state-of-the-art reasoning abilities with a revolutionary "effort parameter" that lets you control the model's reasoning depth and token consumption dynamically.

Key Positioning: Opus 4.5 is the best model in the world for complex coding, autonomous agents, computer use automation, and advanced reasoning tasks. It succeeds where previous models required manual intervention and replaces what previously demanded multiple specialized models.

What Makes Opus 4.5 Different:

  1. Hybrid Reasoning: Can instantly answer simple questions or extend thinking for complex problems—automatically adapting without explicit control
  2. Effort Parameter: Controls token consumption and reasoning depth through simple high/medium/low configuration, independent of model selection
  3. Coding Excellence: 80.9% SWE-bench accuracy (state-of-the-art), 92.3% MMLU, 83.1% GPQA Diamond—best-in-class performance
  4. Cost Efficiency: $5/M input tokens, $25/M output tokens—5x cheaper than Opus 4.1 while more capable
  5. Extended Context: 200K token window supports long conversations, multi-document analysis, and extended agentic workflows
  6. Computer Use: Advanced automation capabilities including application control and office document processing

Opus 4.5 isn't just an incremental improvement—it's a model tier reduction. Tasks requiring Opus 4.1 now run on Sonnet with Opus 4.5 for complex work. Budget-conscious teams use Opus 4.5's effort parameter instead of maintaining multiple model versions.

When to Use This Skill

Use claude-opus-4-5-guide when you need to:

  • Choose Claude Model: Deciding between Opus 4.5, Sonnet 4.5, or Haiku 4.5 for a specific use case
  • Understand Effort Parameter: Learn how to control reasoning depth with high/medium/low effort levels
  • Optimize Costs: Understand pricing and effort trade-offs to reduce token consumption without sacrificing quality
  • Implement Opus 4.5: Get started with model ID, API requirements, and basic examples
  • Benchmark Performance: Understand Opus 4.5 capabilities through test scores and performance metrics
  • Migrate from Opus 4.1: Plan upgrade path and understand what's new
  • Configure Reasoning: Learn hybrid reasoning modes and thinking parameter integration

Quick Start

Basic Opus 4.5 Usage

import anthropic

client = anthropic.Anthropic()

response = client.messages.create(
    model="claude-opus-4-5-20251101",
    max_tokens=1024,
    messages=[
        {
            "role": "user",
            "content": "Explain how quantum computing could solve the traveling salesman problem"
        }
    ]
)

print(response.content[0].text)

Using the Effort Parameter

The effort parameter is an exclusive Opus 4.5 feature that controls reasoning thoroughness:

import anthropic

client = anthropic.Anthropic()

# High effort (default): Maximum capability for complex tasks
response = client.beta.messages.create(
    model="claude-opus-4-5-20251101",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Design a distributed cache system"}],
    output_config={"effort": "high"},
    betas=["effort-2025-11-24"]
)

# Medium effort: Balanced efficiency for typical tasks
response = client.beta.messages.create(
    model="claude-opus-4-5-20251101",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Summarize this meeting transcript"}],
    output_config={"effort": "medium"},
    betas=["effort-2025-11-24"]
)

# Low effort: Quick responses for simple tasks
response = client.beta.messages.create(
    model="claude-opus-4-5-20251101",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Is this email spam?"}],
    output_config={"effort": "low"},
    betas=["effort-2025-11-24"]
)

Key Features

Model Specifications

SpecificationOpus 4.5Opus 4.1Sonnet 4.5Haiku 4.5
Model IDclaude-opus-4-5-20251101claude-opus-4-1-20250125claude-sonnet-4-5-20250929claude-haiku-4-5-20251001
Intelligence★★★★★★★★★☆★★★★☆★★★☆☆
SpeedFast/InstantFastInstantInstant
Input Cost$5/M$25/M$3/M$0.80/M
Output Cost$25/M$125/M$15/M$4/M
Context Window200K200K200K200K
Effort Parameter
Knowledge CutoffMarch 2025January 2025November 2024August 2024
Best ForComplex reasoning, coding, agentsMaximum capability (expensive)Fast, capable tasksSpeed-critical, simple tasks

Performance Benchmarks

Opus 4.5 achieves state-of-the-art results across benchmark suites:

BenchmarkScoreCategorySignificance
SWE-bench80.9%CodeAutonomous coding—solves real GitHub issues
MMLU92.3%KnowledgeBroad knowledge across domains
GPQA Diamond83.1%ReasoningGraduate-level science questions
HumanEval95%+CodePython function implementation
Coding ContestsTop 10%CodeReal programming competitions

These scores demonstrate Opus 4.5 can handle autonomous coding tasks, complex reasoning, and knowledge-intensive applications previously requiring human expertise.

Effort Parameter Levels

EffortToken ImpactUse CaseExample
HighBaseline (default)Maximum quality needed, cost secondaryComplex system design, difficult debugging
Medium~20-40% reductionTypical production use, balanced efficiencyGeneral coding, research, most tasks
Low~50-70% reductionSpeed/cost priority, simple tasksClassification, summarization, lookups

Best Practice: Default to high effort, then measure and decrease strategically for known use cases.

Availability

Opus 4.5 is available on:

  • Claude API (platform.claude.com)
  • Amazon Bedrock (AWS)
  • Google Vertex AI (Google Cloud)
  • Microsoft Azure Foundry (Microsoft)

Related Skills

For deeper dives into specific topics:

For complete effort parameter documentation, API syntax details, and code examples in both Python and TypeScript, see references/effort-parameter-guide.md.

For model selection decision matrix and detailed capability comparisons, see references/model-selection-guide.md.

For full benchmark results and performance demonstrations, see references/model-capabilities.md.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

finnhub-api

No summary provided by upstream source.

Repository SourceNeeds Review
General

auto-updater

No summary provided by upstream source.

Repository SourceNeeds Review
General

todo-management

No summary provided by upstream source.

Repository SourceNeeds Review
General

alphavantage-api

No summary provided by upstream source.

Repository SourceNeeds Review