Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

anthropic-cost-optimizerAnthropic cost 优化器

Agent Skill

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

总安装

3,195

周安装

128

GitHub Stars

公开资料未说明

下载量

1,034
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:anthropic-cost-optimizer(Anthropic cost 优化器)
来源仓库:https://github.com/nextfrontierbuilds/anthropic-cost-optimizer
安装命令:
openclaw skills install anthropic-cost-optimizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install anthropic-cost-optimizer

简介

anthropic-cost-optimizer 分析 OpenClaw 配置以降低 Anthropic API 调用成本。

  • 通过缓存优化、上下文压缩等手段提升令牌使用效率。
  • 适合在高频使用场景下节省运营开支。
  • 安装命令为 openclaw skills install anthropic-cost-optimizer。
  • 优化策略可能影响响应速度,需权衡性能与成本关系。

SKILL.md

name
anthropic-cost-optimizer
description
>

OpenClaw Cost Optimizer

Analyzes the user's OpenClaw config and rewrites it to minimize Anthropic API spend. Works on YAML and JSON configs. Reads pricing tables from references/pricing.md before starting.

Step 0 — Load pricing reference

Read references/pricing.md now. It contains current model rates and the savings formulas used for estimates. Do this before any analysis.

Step 1 — Locate the config

Check these locations in order, stop at the first match:

  1. Path the user explicitly provides
  2. ./openclaw.yaml or ./openclaw.json in the current working directory
  3. ~/.openclaw/config.yaml
  4. ~/.openclaw/openclaw.yaml
  5. ~/openclaw.yaml

If none found, ask the user to paste their config directly.

Step 2 — Audit: the five cost levers

Work through every lever. Flag each issue with severity HIGH / MEDIUM / LOW.

Lever 1 — Prompt caching (HIGH impact, ~60–90% input cost reduction)

Flag HIGH if any of these are missing for Anthropic models:

  • cacheRetention not set, or set to "none"

Fix: Add cacheRetention: "long" for the primary model. Use "short" (5 min) for agents that handle fast-changing context, "long" (1 hr) for everything else.

agents:
  defaults:
    models:
      anthropic/claude-opus-4-6:
        params:
          cacheRetention: "long"

Note: caching is API-key only. Subscription setup-tokens do not honor it.


Lever 2 — Model routing (HIGH impact)

Flag HIGH if: a single model (especially Opus) is used for ALL agents with no per-agent overrides.

Fix: Route by task complexity:

Agent typeRecommended model
Main reasoning / planninganthropic/claude-opus-4-6
Coding, editing, reviewanthropic/claude-sonnet-4-6
Linting, search, triage, classifyanthropic/claude-haiku-4-5
agents:
  list:
    - id: planner
      params:
        model: anthropic/claude-opus-4-6
    - id: coder
      params:
        model: anthropic/claude-sonnet-4-6
    - id: reviewer
      params:
        model: anthropic/claude-sonnet-4-6
    - id: triage
      params:
        model: anthropic/claude-haiku-4-5

Lever 3 — Thinking level (MEDIUM impact)

Flag MEDIUM if: thinking: "adaptive" or thinking: "high" is set as the default for ALL agents, including simple ones.

Fix: Scope thinking: "adaptive" only to the primary reasoning agent. Set thinking: "low" or omit for utility agents.

agents:
  defaults:
    models:
      anthropic/claude-opus-4-6:
        params:
          thinking: "low"   # default: low
  list:
    - id: planner
      params:
        thinking: "adaptive"  # override only where needed

Lever 4 — 1M context window (MEDIUM impact)

Flag MEDIUM if: context1m: true is set globally or for agents that don't need it.

The 1M context beta header triggers surcharge pricing for Anthropic API calls. Most agents don't need it.

Fix: Remove context1m: true from the global defaults. Re-add only to agents that demonstrably require >200K tokens of context.


Lever 5 — Fast mode (LOW impact, but easy win)

Flag LOW if: fastMode is not enabled for Sonnet agents doing quick tasks.

Fix: Add fastMode: true to Sonnet model params for agents doing rapid back-and-forth tasks (search, triage, review). This reduces latency and can lower costs on high-frequency agents.

models:
  anthropic/claude-sonnet-4-6:
    params:
      fastMode: true
      cacheRetention: "long"

Step 3 — Generate the optimized config

Rewrite the full config applying all fixes. Preserve every key the user had that is not being changed. Add comments above each changed block explaining what changed and why.

Format:

# COST OPTIMIZER — changed blocks annotated below
# Original: <what it was>  →  Optimized: <what it is now>

Step 4 — Show the diff and cost estimate

Before writing anything, show the user:

  1. Issues found — list each one with severity and one-line description
  2. Estimated monthly savings — use the formula from references/pricing.md

with assumed 500K tokens/day baseline

  1. Diff — show only the changed blocks (not the full file unless it's short)

Example output format:

Issues found (3):
  [HIGH]   No prompt caching — estimated +$340/mo at current usage
  [HIGH]   All agents using Opus — Haiku suitable for triage/review agents
  [MEDIUM] thinking: adaptive set globally — limits to reasoning agent only

Estimated savings: ~$290/mo (68% reduction)
  Before: ~$430/mo  →  After: ~$140/mo

Changed blocks:
  + agents.defaults.models.anthropic/claude-opus-4-6.params.cacheRetention: "long"
  + agents.list[triage].params.model: anthropic/claude-haiku-4-5
  ~ agents.list[planner].params.thinking: adaptive → low (default); kept adaptive on planner only

Step 5 — Confirm and write

Ask the user: "Apply these changes to your config?"

  • If yes: write the optimized config back to the same file path. Then tell the

user to run openclaw gateway restart (or it will auto-restart if config watch is enabled).

  • If no / partial: apply only confirmed changes.
  • If they want to review first: show the full optimized YAML before writing.

Edge cases

  • Subscription setup-token auth: Note that cacheRetention has no effect

with subscription tokens — it's API-key only. Tell the user if their auth config uses sk-ant-oat-* tokens.

  • Multiple agents with no IDs: If the config has unnamed agents, suggest

adding IDs to enable per-agent model routing.

  • Non-Anthropic providers: Only audit Anthropic model blocks. Leave OpenAI,

Gemini, and other provider blocks untouched.

  • Config not found: If no config file is found and no paste provided, offer

to generate a fresh cost-optimized starter config instead.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.95%
按下载量换算1,023

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills