Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

model-cost-advisor模型成本顾问

Agent Skill

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

总安装

1,805

周安装

73

GitHub Stars

公开资料未说明

下载量

566
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install model-cost-advisor

简介

基于 30+ 模型实时定价推荐最具性价比选项。

  • 适合需要控制 LLM 使用成本的开发者与团队。
  • 提供层次分析法与代币消耗预估功能。model-cost-advisor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 结果仅供参考,实际成本受用量波动影响。
  • 建议结合服务质量要求综合决策选型。

SKILL.md

name
model-cost-advisor
description
Analyze any task and recommend the most cost-effective LLM — with live pricing data from 30+ models, tier analysis, token estimation, and projected cost. Perfect before starting a new task or comparing providers.
title
Model Cost Advisor — Pick the right model for the right price
summary
|
author
Hermes
version
1.0

🤖 Model Cost Advisor

Pick the most cost-effective LLM for any task — before you start spending.

Why pay Claude Opus prices for a task DeepSeek can handle? This skill analyzes your task, maps it to a capability tier, and finds the cheapest model that gets the job done well.


Quick Start

# 1. Fetch live pricing (one-time, auto-cached for 48h)
python scripts/fetch_pricing.py

# 2. Get a recommendation
echo "Write a REST API with FastAPI, handle auth and rate limiting" | python scripts/advise.py

# 3. Or pass task directly
python scripts/advise.py --task "Refactor a 2000-line Python class into smaller modules"

# 4. Compare all models side-by-side
python scripts/advise.py --compare

# 5. JSON output for scripting
python scripts/advise.py --task "Debug a race condition" --json

What It Does

  1. Analyzes your task description for complexity signals (reasoning depth, code needs, context length, agentic loops, domain expertise)
  2. Maps to one of 4 capability tiers: Budget → Standard → Advanced → Premium
  3. Estimates token usage based on task complexity
  4. Scores 30+ models using live pricing from litellm's community DB
  5. Recommends the top 3 models with projected cost, rationale, and pitfalls

The Four Tiers

TierWhen to UseExample TasksTypical Cost
💰 BudgetSimple Q&A, classification, formatting, basic scripts"Summarize this text", "Format JSON"<$0.01
📦 StandardMulti-step reasoning, medium code, structured output"Write a web scraper", "Explain a concept"$0.01–$0.10
🚀 AdvancedComplex code, architecture design, agentic loops"Build a full-stack app", "Debug concurrency"$0.10–$1.00
👑 PremiumFrontier reasoning, research, >128K context"Research paper analysis", "Safety-critical code"$1.00+

Models Tracked

30+ models across 6 providers, updated from litellm's community DB:

ProviderModels
AnthropicClaude Opus 4 / 4.1 / 4.5 / 4.6 / 4.7, Sonnet 4 / 4.5 / 4.6, Haiku 3.5
OpenAIGPT-4o, GPT-4o-mini, GPT-4.1 / 4.1-mini / 4.1-nano, o3 / o3-mini / o4-mini
GoogleGemini 2.0 Flash, 2.5 Flash / Pro
DeepSeekV3 / V3.1 / V3.2, R1 (with reasoning token warning)
AlibabaQwen Turbo / Plus / Max / Coder-Plus / 3-235B
MistralMinistral 3B / 8B / 14B

Example Output

╔══════════════════════════════════════════════════╗
║        🤖 Model Cost Advisor                      ║
╚══════════════════════════════════════════════════╝

🎯 Task Analysis
   Complexity Tier: 3 (Advanced)
   Est. Input:  ~24K tokens
   Est. Output: ~10K tokens
   Signals: multi_step_logic, complex_code, multi_turn_tools

💰 Top Recommendations
   Rank  Model                  Cost     Input $/M Output $/M
   ───── ────────────────────── ────────  ──────── ─────────
   🥇    deepseek-v3            $0.0175     0.28     0.42
   🥈    deepseek-v3.1          $0.0216     0.27     1.10
   🥉    gemini-2.5-flash       $0.0322     0.30     2.50

📋 Why deepseek-v3?
   Tier 3 task → best value in tier 1
   Estimated total cost: $0.0175

How the Agent Uses This Skill

When loaded by Hermes, the agent follows these steps:

Step 1: Analyze Task Requirements

Classify the task along these dimensions to determine the minimum capability tier needed:

DimensionWeightWhat to Assess
Reasoning DepthHighSimple lookup → multi-step logic → deep chain-of-thought
Code GenerationMediumNone → simple scripts → multi-file complex → architecture design
Context LengthMedium<4K → 4K-32K → 32K-128K → >128K tokens
Tool Use / AgenticHighSingle shot → multi-turn tools → autonomous agent loop
Domain ExpertiseLowGeneral → specialized (math, legal, medical, Chinese content)
Output QualityMediumDraft OK → production → customer-facing critical
LatencyLowBatch OK → real-time interactive

Step 2: Estimate Token Usage

Task ComplexityInput TokensOutput Tokens
Trivial (single Q&A)500 – 2K200 – 1K
Simple (few exchanges)2K – 8K1K – 4K
Medium (multi-turn agent, 5-10 tools)8K – 40K4K – 16K
Complex (deep agent, 10-30 tools)40K – 150K16K – 50K
Heavy (autonomous loop, 30+ tools)150K – 500K+50K – 200K+

Step 3: Run Scripts

# Ensure pricing is fresh
python scripts/fetch_pricing.py

# Get recommendation
python scripts/advise.py --task "<user's task description>"

Step 4: Present Recommendation

Format the output with:

  1. Task complexity analysis
  2. Top 3 model picks with cost
  3. Comparison vs user's current model (if known)
  4. Any pitfalls (R1 reasoning tokens, context window limits, etc.)

Pitfalls to Warn Users About

Script internals (for maintenance):

  • Tier keys in pricing JSON are strings, not intspricing_cache dict uses "1" not 1. The advise script casts them internally, but direct lookups must match.
  • Keyword matching order matters — put longer-specific keywords (e.g., 'production') before shorter ambiguous ones ('pr') to avoid substring false positives. Split on word boundaries.

User-facing pitfalls:

  1. R1/o3 reasoning tokens are hidden: Sticker price hides massive output consumption. Real cost is 3-5× higher for reasoning models.
  2. Context is not free: Models with 1M context (Gemini) charge for every token in the window, used or not.
  3. Tool calls compound cost: Every agentic round-trip adds system prompt + tool definitions + results. An agent task easily 5× the naive estimate.
  4. Cached prefixes save money: System prompts and cached prefixes bill at 10-25% — factor in for repetitive tasks.
  5. Chinese-language tasks: DeepSeek and Qwen outperform their price tier on Chinese content. Western models cost more for equivalent quality.
  6. Pricing changes frequently: Run fetch_pricing.py before important decisions. Cache TTL is 48 hours.

Scripts

  • scripts/fetch_pricing.py — Fetches live pricing from litellm DB, normalizes to canonical model names, caches for 48h.
  • scripts/advise.py — Task complexity analysis + model recommendation engine with colorized terminal output.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.52%
按下载量换算558

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install model-cost-advisor 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills