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

prompt-token-counter提示令牌计数器

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

10,392

周安装

433

GitHub Stars

公开资料未说明

下载量

3,464
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install prompt-token-counter

简介

计算 300 多个 LLM 模型的代币并估算成本。主要用途:审核 OpenClaw 工作区令牌消耗(内存、角色、技能)。

SKILL.md

name
prompt-token-counter
version
1.0.10
description
Count tokens and estimate costs for 300+ LLM models. Primary use: audit OpenClaw workspace token consumption (memory, persona, skills).
trigger
token count, cost estimate, prompt length, API cost, OpenClaw audit, workspace token usage, memory/persona/skills tokens, context window limit

Prompt Token Counter (toksum)

First load reminder: This skill provides the scripts CLI (toksum). Use it when the user asks to count tokens, estimate API costs, or audit OpenClaw component token consumption (memory, persona, skills).

Before Installing — Security & Privacy

  • What will be read: The audit workflow reads files under ~/.openclaw/workspace and ~/.openclaw/skills (AGENTS.md, SOUL.md, MEMORY.md, SKILL.md, etc.). Those files may contain personal data or secrets. Only install if you accept that access.
  • URL fetching: The CLI can fetch HTTP(S) URLs via -u. SKILL.md requires the agent to confirm each URL with the user before fetching. Insist the agent follow that rule; never allow automatic fetching of unknown URLs.
  • Source verification: Source: https://github.com/Zhaobudaoyuema/prompt-token-counter. Review scripts/core.py and scripts/cli.py before use. The code performs local file reads and optional HTTP GETs only; no other network calls or data exfiltration.
  • Run locally first: If unsure, run the CLI manually in an isolated environment against safe test files to verify behavior.

Primary Use: OpenClaw Token Consumption Audit

Goal: Help users identify which OpenClaw components consume tokens and how much.

1. Memory & Persona Files

These files are injected into sessions and consume tokens. Search and count them:

FilePurposeTypical Location
AGENTS.mdOperating instructions, workflow, priorities~/.openclaw/workspace/
SOUL.mdPersona, tone, values, behavioral guidelines~/.openclaw/workspace/
IDENTITY.mdName, role, goals, visual description~/.openclaw/workspace/
USER.mdUser preferences, communication style~/.openclaw/workspace/
MEMORY.mdLong-term memory, persistent facts~/.openclaw/workspace/
TOOLS.mdTool quirks, path conventions~/.openclaw/workspace/
HEARTBEAT.mdPeriodic maintenance checklist~/.openclaw/workspace/
BOOT.mdStartup ritual (when hooks enabled)~/.openclaw/workspace/
memory/YYYY-MM-DD.mdDaily memory logs~/.openclaw/workspace/memory/

Workspace path: Default ~/.openclaw/workspace; may be overridden in ~/.openclaw/openclaw.json via agent.workspace.

2. Skill Files (SKILL.md)

Skills are loaded per session. Count each SKILL.md:

LocationScope
~/.openclaw/skills/*/SKILL.mdOpenClaw managed skills
~/.openclaw/workspace/skills/*/SKILL.mdWorkspace-specific skills (override)

3. Audit Workflow

  1. Locate workspace: Resolve ~/.openclaw/workspace (or config override).
  2. Collect files: List all memory/persona files and SKILL.md paths above.
  3. Count tokens: Run python -m scripts.cli <path1> <path2> ... -m <model> -c (batch mode).
  4. Summarize: Group by category (memory, persona, skills), report total and per-file.

Example audit command (PowerShell):

$ws = "$env:USERPROFILE\.openclaw\workspace"
python -m scripts.cli -m gpt-4o -c "$ws\AGENTS.md" "$ws\SOUL.md" "$ws\USER.md" "$ws\IDENTITY.md" "$ws\MEMORY.md" "$ws\TOOLS.md"

Example audit (Bash):

WS=~/.openclaw/workspace
python -m scripts.cli -m gpt-4o -c "$WS/AGENTS.md" "$WS/SOUL.md" "$WS/USER.md" "$WS/IDENTITY.md" "$WS/MEMORY.md" "$WS/TOOLS.md"

Project Layout

prompt_token_counter/
├── SKILL.md
├── package.json                # npm package (OpenClaw skill)
├── publish_npm.py               # Publish to npm; syncs version
└── scripts/                    # Python package, CLI + examples
    ├── cli.py                  # Entry point
    ├── core.py                 # TokenCounter, estimate_cost
    ├── registry/
    │   ├── models.py           # 300+ models
    │   └── pricing.py          # Pricing data
    └── examples/               # Script examples
        ├── count_prompt.py
        ├── estimate_cost.py
        ├── batch_compare.py
        └── benchmark_token_ratio.py

Invoke: python -m scripts.cli from project root.

Version Sync (publish_npm.py)

When publishing to npm, publish_npm.py bumps the patch version and syncs it to:

  • package.jsonversion
  • SKILL.md — frontmatter version
  • scripts/__init__.py__version__

Run: python publish_npm.py (after npm login).


Runtime Dependencies

  • Python 3 — required
  • tiktoken (optional) — pip install tiktoken for exact OpenAI counts

Language Rule

Respond in the user's language. Match the user's language (e.g. Chinese if they write in Chinese, English if they write in English).


URL Usage — Mandatory Agent Rule

Before using -u / --url to fetch content from any URL, you MUST:

  1. Explicitly warn the user that the CLI will make an outbound HTTP/HTTPS request to the given URL.
  2. Confirm the URL is trusted — tell the user: "Only use URLs you fully trust. Untrusted URLs may expose your IP, leak data, or be used for SSRF. Do you confirm this URL is safe?"
  3. Prefer alternatives — if the user can provide the content via -f (local file) or inline text, suggest that instead of URL fetch.
  4. Never auto-fetch — do not invoke -u without the user having explicitly provided the URL and acknowledged the risk.

If the user insists on using a URL: Proceed only after they confirm. State clearly: "I will fetch from [URL] to count tokens. Proceed?"


Model Name — Mandatory Agent Rule

Before invoking the CLI, you MUST have a concrete model name from the user.

  1. Require explicit model-m / --model is required. Do not guess or assume; the user must provide the exact name (e.g. gpt-4o, claude-3-5-sonnet-20241022).
  2. If unclear, ask — if the user says "GPT" or "Claude" or "the latest model" without a specific name, ask: "Please specify the exact model name (e.g. gpt-4o, claude-3-5-sonnet-20241022). Run python -m scripts.cli -l to list supported models."
  3. Do not auto-pick — never substitute a model on behalf of the user without their confirmation.
  4. Validate when possible — if the model name seems ambiguous, offer -l output or confirm: "I'll use [model]. Is that correct?"

CLI Usage

Default: Read from local file(s). No segmentation. Supports multiple file paths for batch execution.

python -m scripts.cli [OPTIONS] [FILE ...]
OptionShortDescription
--model-mModel name (required unless --list-models) — Agent must obtain exact name from user; ask if unclear
--file-fRead from file (repeatable)
--url-uRead from URL (repeatable) — Agent must warn user before use; only trusted URLs
--list-models-lList supported models
--cost-cShow cost estimate
--output-tokensUse output token pricing
--currencyUSD or INR
--verbose-vDetailed output

Examples

# Multiple local files (default batch mode)
python -m scripts.cli file1.txt file2.txt -m gpt-4
python -m scripts.cli AGENTS.md SOUL.md MEMORY.md -m gpt-4o -c

# Single file with -f
python -m scripts.cli -f input.txt -m claude-3-opus -c

# Inline text (when arg is not an existing file path)
python -m scripts.cli -m gpt-4 "Hello, world!"

# List models
python -m scripts.cli -l

# Run bundled example scripts
python scripts/examples/count_prompt.py file1.txt file2.txt -m gpt-4
python scripts/examples/estimate_cost.py "Your text" gpt-4
python scripts/examples/batch_compare.py file1.txt -m gpt-4 claude-3-opus

Python API

from scripts import TokenCounter, count_tokens, estimate_cost, get_supported_models

tokens = count_tokens("Hello!", "gpt-4")
counter = TokenCounter("claude-3-opus")
tokens = counter.count_messages([
    {"role": "system", "content": "..."},
    {"role": "user", "content": "..."}
])
cost = estimate_cost(tokens, "gpt-4", input_tokens=True)

Supported Models

300+ models across 34+ providers: OpenAI, Anthropic, Google, Meta, Mistral, Cohere, xAI, DeepSeek, etc. Use python -m scripts.cli -l for full list.

  • OpenAI: exact via tiktoken
  • Others: ~85–95% approximation

Response Output — Agent Guideline

After returning token count or cost estimate results, the agent MUST:

  1. Include the project link — e.g.

> Source: prompt-token-counter

  1. Briefly explain how tokens are calculated — e.g.

> How tokens are counted: OpenAI models use tiktoken (exact). Other models use provider-specific formulas calibrated from benchmark data. For CJK-heavy text, the ratio is blended by CJK character ratio so that Chinese gets fewer chars per token.


Common Issues

IssueAction
"tiktoken is required"pip install tiktoken
UnsupportedModelErrorUse -l for valid names
Cost "NA"Model has no pricing; count still valid
User provides URLAgent must warn: outbound request, SSRF risk, only trusted URLs; confirm before -u
Model unclear / vagueAgent must ask: user to specify exact model name; offer -l to list; do not guess

When to Trigger This Skill

Activate this skill when the user:

TriggerExample phrases
Token count"How many tokens?", "Count tokens in this prompt", "Token length of X"
Cost estimate"Estimate API cost", "How much for this text?", "Cost for GPT-4"
Prompt size"Check prompt length", "Is this too long?", "Context window limit"
OpenClaw audit"How many tokens does my workspace use?", "Audit OpenClaw memory/persona/skills", "Which components consume tokens?", "Token usage of AGENTS.md / SOUL.md / skills"
Model comparison"Compare token cost across models", "Which model is cheaper?"

Also trigger when the agent needs to count tokens or estimate cost before/after generating content.


Quick Reference

ItemCommand
Invokepython -m scripts.cli
List modelspython -m scripts.cli -l
Cost-c (input) / --output-tokens (output)
Currency--currency USD or INR

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.08%
按下载量换算3,397

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills