/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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install acetoolz-word-counter - After installation, invoke the skill by name or use
/acetoolz-word-counter - Provide required inputs per the skill's parameter spec and get structured output
What is AceToolz Word Counter?
Count words, characters, sentences, paragraphs, and reading time for any text using AceToolz. It is an AI Agent Skill for Claude Code / OpenClaw, with 107 downloads so far.
How do I install AceToolz Word Counter?
Run "/install acetoolz-word-counter" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is AceToolz Word Counter free?
Yes, AceToolz Word Counter is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does AceToolz Word Counter support?
AceToolz Word Counter is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created AceToolz Word Counter?
It is built and maintained by AceToolz (@acetoolz); the current version is v1.0.1.