Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

model-pricing-calculator模型定价计算器

Agent Skill

model-pricing-calculator 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,599

周安装

153

GitHub Stars

公开资料未说明

下载量

1,261
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install model-pricing-calculator

简介

当用户需要从多个API平台获取AI模型定价数据,计算模型比率、完成率和分组时,应该使用此技能。

SKILL.md

name
model-pricing-calculator
description
This skill should be used when the user needs to fetch AI model pricing data from multiple API platforms, calculate model ratios, completion ratios, and group ratios based on a unified pricing formula, and output the results in a standardized JSON format.

Model Pricing Calculator

A skill for fetching AI model pricing data from configured platform APIs and computing standardized pricing ratios (model ratio, completion ratio, group ratio).

When to Use

  • Fetching model pricing information from AI API aggregation platforms
  • Computing model ratios, completion ratios, and group ratios from raw pricing data
  • Unifying pricing across multiple platforms using a consistent model ratio + group ratio scheme
  • Reverse-calculating ratio configurations from target input/output prices
  • Adding new pricing source URLs to the configuration

Core Concepts

Pricing Formula

Base price: $0.002 / 1K tokens (1 USD = 500,000 quota)

Mode 1 - Ratio-based (per-token):
  Cost = (InputTokens + OutputTokens × CompletionRatio) × ModelRatio × GroupRatio

Mode 2 - Fixed price (per-call, higher priority):
  Cost = ModelPrice(USD) × 500,000 × GroupRatio

Reverse Calculation

ModelRatio = InputPrice_per_1K / 0.002
CompletionRatio = OutputPrice_per_1K / InputPrice_per_1K

Workflow

Step 1: Check and Update URL Configuration

Read references/pricing_urls.json to verify configured platform URLs. To add a new platform, append a new entry with name, pricing_page, and api_endpoint fields.

The API endpoints typically follow the pattern {base_url}/api/pricing for platforms built on New API / One API systems.

Step 2: Fetch and Calculate Ratios

Run the calculation script:

python scripts/fetch_and_calculate.py

Options:

  • --urls-file <path> — custom URL config file path
  • --output-dir <path> — save results as separate JSON files to the specified directory
  • --verify — print a price verification table showing actual prices per group
  • --no-snapshot — skip snapshot saving and diff comparison
  • --models <patterns> — filter by model names, comma-separated, supports wildcard * (e.g. gpt-4*,claude-*)
  • --groups <patterns> — filter by group names, comma-separated, supports wildcard * (e.g. default,aws*)
  • --source <patterns> — filter by data source name, comma-separated, supports wildcard * (e.g. PackyAPI or 12AI,Packy*). Names correspond to name field in pricing_urls.json

The script will:

  1. Fetch pricing data from each configured API endpoint
  2. Extract model ratios, completion ratios, and group ratios
  3. Unify duplicate models across platforms (first-source wins for ratios)
  4. Apply --models / --groups filters if specified (supports wildcard *)
  5. Output results in three standardized JSON blocks
  6. Compare with previous snapshot (if exists, skipped in filter mode) and report any additions, removals, or value changes
  7. Save current data as data/latest_snapshot.json (skipped in filter mode to avoid partial data overwriting full snapshot)

Filter Examples

Query specific models only:

python scripts/fetch_and_calculate.py --models "gpt-4*,claude-opus*"

Query specific groups only:

python scripts/fetch_and_calculate.py --groups "default,aws"

Combine both filters:

python scripts/fetch_and_calculate.py --models "gpt-4o*" --groups "default,gemini*"

Query from a specific data source only:

python scripts/fetch_and_calculate.py --source "PackyAPI"

Combine source, model and group filters:

python scripts/fetch_and_calculate.py --source "PackyAPI" --models "claude-*" --groups "aws*"
Note: When --models, --groups, or --source is used, snapshot saving and diff comparison are automatically skipped to prevent partial data from overwriting the complete snapshot.

Step 3: Review Output Format

The output strictly follows this exact structure with 3 JSON blocks:

(1)模型倍率
{
  "claude-haiku-4-5-20251001": 1,
  "claude-opus-4-5-20251101": 2.5,
  "claude-opus-4-6": 2.5
}
(2)模型补全倍率
{
  "claude-haiku-4-5-20251001": 5,
  "claude-opus-4-5-20251101": 5,
  "claude-opus-4-6": 5
}
(3)分组倍率
{
  "default": 1.2,
  "aws": 2,
  "gemini": 0.6,
  "gemini-1": 3
}

Step 4: Snapshot and Diff

Each run automatically:

  • Loads the previous snapshot from data/latest_snapshot.json (if it exists)
  • Compares current results with the previous snapshot
  • Reports all differences: added models, removed models, and changed values
  • Overwrites the snapshot with the latest data

The diff report format:

============================================================
与上次数据对比(上次保存时间: 2025-03-23 10:00:00)
============================================================
  模型倍率:
    【新增 2 项】
      + new-model-a: 1.5
      + new-model-b: 2.0
    【删除 1 项】
      - old-model-x: 0.8
    【数值变化 1 项】
      * gpt-5: 0.625 → 0.75
  模型补全倍率: 无变化
  分组倍率: 无变化

Use --no-snapshot to skip this behavior.

Step 5: Cross-Platform Unification Strategy

When the same model appears on multiple platforms:

  • Model ratio and completion ratio remain identical across platforms
  • Price differences are controlled through group ratios assigned to each platform/channel
  • Each platform's pricing channel corresponds to a specific group in the group_ratio map

For detailed pricing rules and formulas, refer to references/pricing_rules.md.

Bundled Resources

ResourcePurpose
scripts/fetch_and_calculate.pyMain script for data fetching, ratio calculation, snapshot and diff
references/pricing_urls.jsonPlatform URL configuration (add new sources here)
references/pricing_rules.mdDetailed pricing calculation rules and output format spec
data/latest_snapshot.jsonAuto-generated snapshot of the latest run (created after first run)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.81%
按下载量换算1,170

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills