Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

proxy-token-optimizerAgent 令牌优化器

Agent Skill

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

总安装

7,688

周安装

311

GitHub Stars

1

下载量

2,413
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install proxy-token-optimizer

简介

proxy-token-optimizer 用于优化 openclaw-manager 平台的 LLM 令牌使用与 API 成本。

  • 适用于 OpenClaw 中希望降低大模型调用开销、提升简单任务处理效率的用户。
  • 通过 clawhub 安装后自动路由提示词至低成本模型(如 glm-4.7-flashx),减少 token 消耗。
  • 使用前请确认路由策略不影响业务准确性,并监控实际节省效果以调整阈值参数。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
proxy-token-optimizer
description
|
metadata
{"openclaw": {"always": true}}

Proxy Token Optimizer

Reduces LLM API costs for the openclaw-manager multi-tenant proxy platform through four strategies:

  1. Model-tier routing — Route prompts to the cheapest capable model
  2. Heartbeat optimization — Cheapest model + longer intervals for heartbeat calls
  3. Context lazy loading — Load only the context files each prompt actually needs
  4. Platform usage analytics — Real data from PostgreSQL, not estimates

Why these strategies matter

The openclaw-manager platform proxies LLM requests for multiple OpenClaw instances through providers like zai-proxy, zai-coding-proxy, and kimi-coding-proxy. Each provider offers models at different price points (e.g., glm-4.7 vs glm-4.7-flashx). Without optimization, every request — including simple greetings and heartbeat pings — uses the default (expensive) model, and every session loads the full context regardless of need. These four strategies target the highest-impact cost drivers.

Quick start

All instance-side scripts run locally with no dependencies. Platform-side scripts need DB access.

# Model routing — which model should handle this prompt?
python3 scripts/model_router.py "thanks!"
# → {"tier": "cheap", "recommended_model": "zai-proxy/glm-4.7-flashx"}

# Context optimization — which files does this prompt need?
python3 scripts/context_optimizer.py recommend "hi"
# → {"context_level": "minimal", "recommended_files": ["SOUL.md", "IDENTITY.md"]}

# Heartbeat config — generate openclaw.json patch
python3 scripts/heartbeat_config.py patch
# → {"agents": {"defaults": {"heartbeat": {"every": "55m", "model": "zai-proxy/glm-4.7-flashx"}}}}

# Unified CLI (all commands in one place)
python3 scripts/cli.py --help

Scripts reference

Instance-side (pure local, no network, no DB)

scripts/model_router.py

Routes prompts to the right model tier based on complexity analysis.

Tier logic:

  • cheapglm-4.7-flashx: Greetings, acknowledgments, heartbeats, cron jobs, log parsing. Cost savings: 5-10x vs standard.
  • standardglm-4.7: Code writing, debugging, explanations. Default for unclear prompts.
  • premiumglm-4.7 (or k2p5 for kimi): Architecture design, deep analysis, strategy planning.

Supports Chinese and English patterns. Provider-aware — works with zai-proxy, zai-coding-proxy, and kimi-coding-proxy.

python3 scripts/model_router.py "<prompt>" [provider]
python3 scripts/model_router.py compare  # show all provider models

scripts/context_optimizer.py

Analyzes prompt complexity to recommend which context files to load, reducing unnecessary token consumption.

Context levels:

LevelWhenFiles loadedToken savings
minimal"hi", "thanks", short msgsSOUL.md + IDENTITY.md (2)~80%
standard"write a function", normal work+ memory/TODAY.md + conditional~50%
full"design architecture", complex tasks+ MEMORY.md + all conditional~30%

Also generates an optimized AGENTS.md template with lazy-loading rules baked in:

python3 scripts/context_optimizer.py recommend "<prompt>"
python3 scripts/context_optimizer.py generate-agents  # creates AGENTS.md.optimized

scripts/heartbeat_config.py

Generates openclaw.json configuration patches for heartbeat optimization:

  • Forces heartbeat model to glm-4.7-flashx (cheapest available)
  • Sets interval to 55 minutes (keeps prompt cache warm within 1-hour TTL, avoids cache rebuild cost)
python3 scripts/heartbeat_config.py recommend [cache_ttl_minutes]
python3 scripts/heartbeat_config.py patch  # output JSON patch for openclaw.json

Platform-side (requires DB connection)

These scripts query the usage_records PostgreSQL table for real data. Run from the openclaw-manager project root with the virtualenv activated.

scripts/usage_report.py

Generates usage reports from actual database records — not estimates.

python3 scripts/usage_report.py overview [days]     # platform-wide summary
python3 scripts/usage_report.py instance <name> [days]  # single instance detail

Overview includes: total calls/tokens, per-provider breakdown, per-model breakdown, top 10 instances by consumption, 7-day daily trend.

Instance report includes: per-model distribution, daily trend, lifetime totals.

scripts/quota_advisor.py

Compares actual 24-hour usage against quota plan limits to find mismatches:

  • Wasteful: Usage below 20% of plan limit → suggest downgrade
  • Throttled: Usage above 80% of plan limit → suggest upgrade
python3 scripts/quota_advisor.py analyze  # check all instances
python3 scripts/quota_advisor.py plans    # show available quota plans

Unified CLI

scripts/cli.py wraps all the above into a single entry point:

python3 scripts/cli.py route "<prompt>"       # model routing
python3 scripts/cli.py context "<prompt>"     # context recommendation
python3 scripts/cli.py generate-agents        # generate AGENTS.md
python3 scripts/cli.py heartbeat              # heartbeat config
python3 scripts/cli.py overview [days]        # platform usage (needs DB)
python3 scripts/cli.py report <name> [days]   # instance report (needs DB)
python3 scripts/cli.py advisor                # quota advice (needs DB)

Project integration points

This skill works with existing openclaw-manager infrastructure:

ComponentFileHow this skill uses it
Provider configconfig/model.yamlModel names/endpoints for routing
Proxy routingconfig_service.pyWhere _inject_proxy_providers() registers models
Usage recordingproxy_common/usage_recorder.pySource of real usage data
Quota plansconfig/llm_proxy.yamlPlan definitions for quota advisor
Instance modelapp/models.pyInstance metadata for reports

Expected savings

StrategyMechanismImpact
Context lazy loadingFewer tokens per request50-80% context reduction
Model routing (flashx)Lower per-token price5-10x on simple tasks
Heartbeat → flashxLower heartbeat costSignificant per-instance savings
Heartbeat interval 55minFewer API calls~45% fewer heartbeat calls

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.1%
按下载量换算1,716

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills