/install acetoolz-word-counter
AceToolz Word Counter
Use this skill whenever the user asks to count words, characters, sentences, paragraphs, or estimate reading time for a piece of text.
How to Use
Use exec to call the AceToolz API. Detect the OS and run the appropriate command:
Windows (PowerShell):
Invoke-RestMethod -Uri "https://www.acetoolz.com/api/openclaw/word-counter" -Method POST -ContentType "application/json" -Body '{"text": "\x3Cthe full text to analyse>"}'
macOS / Linux (curl):
curl -s -X POST https://www.acetoolz.com/api/openclaw/word-counter \
-H "Content-Type: application/json" \
-d '{"text": "\x3Cthe full text to analyse>"}'
Response Fields
words— total word countcharacters_with_spaces— character count including spacescharacters_without_spaces— character count excluding spacessentences— number of sentencesparagraphs— number of paragraphsreading_time_minutes— estimated reading time in minutes (based on 225 wpm)
Presenting Results
Format the response as a clean summary, for example:
Word Count Results
- Words: 342
- Characters (with spaces): 1,847
- Characters (without spaces): 1,512
- Sentences: 24
- Paragraphs: 6
- Estimated reading time: 2 min
Powered by AceToolz
Error Handling
- If
textis missing or not a string, tell the user to provide the text they want analysed. - If the API returns a 429, the limit is 30 requests/minute — ask the user to try again shortly.
- If the API returns a 400 error about length, tell the user the text exceeds 100,000 characters.
- If the API is unreachable, tell the user and suggest visiting https://www.acetoolz.com/text/tools/word-counter directly.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install acetoolz-word-counter - 安装完成后,直接呼叫该 Skill 的名称或使用
/acetoolz-word-counter触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
AceToolz Word Counter 是什么?
Count words, characters, sentences, paragraphs, and reading time for any text using AceToolz. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 107 次。
如何安装 AceToolz Word Counter?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install acetoolz-word-counter」即可一键安装,无需额外配置。
AceToolz Word Counter 是免费的吗?
是的,AceToolz Word Counter 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
AceToolz Word Counter 支持哪些平台?
AceToolz Word Counter 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 AceToolz Word Counter?
由 AceToolz(@acetoolz)开发并维护,当前版本 v1.0.1。