Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

claude-opus-4-5-guideClaude opus 4 5 指南

Agent Skill

claude-opus-4-5-guide 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

9

下载量

125
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claude-opus-4-5-guide(Claude opus 4 5 指南)
来源仓库:https://github.com/adaptationio/skrillz
仓库路径:skills/claude-opus-4-5-guide
安装命令:
npx skills add https://github.com/adaptationio/skrillz --skill claude-opus-4-5-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/adaptationio/skrillz --skill claude-opus-4-5-guide

简介

claude-opus-4-5-guide 介绍 Anthropic 最强推理模型 Opus 4.5 的核心能力与应用边界。

  • 聚焦复杂编码、计算机操作与自主代理等高阶任务场景的优势表现。
  • 详解 effort 参数对推理深度与 token 消耗的动态调节机制。
  • 作为知识型指南,不直接调用模型,需结合具体工具链使用。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.59%
按下载量换算39

github-copilot

23.63%
按下载量换算30

neovate

16%
按下载量换算20

Antigravity

13.8%
按下载量换算17

kilo

7.32%
按下载量换算9

command-code

3.2%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills