multiAI Summary Pending
word-stats
Get word count, character count, reading time, and text statistics. Quick analysis without questions.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/word-stats/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/humanizerai/word-stats/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/word-stats/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How word-stats Compares
| Feature / Agent | word-stats | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Get word count, character count, reading time, and text statistics. Quick analysis without questions.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Word Statistics Provide quick, accurate statistics about the provided text. ## Input The user provides text in $ARGUMENTS. **Important:** If text is provided, immediately output stats. Don't ask clarifying questions - they want the numbers. ## Output Format ``` ## Word Statistics ### Counts | Metric | Value | |--------|-------| | Words | [X] | | Characters (with spaces) | [X] | | Characters (no spaces) | [X] | | Sentences | [X] | | Paragraphs | [X] | ### Time | Metric | Value | |--------|-------| | Reading time | [X] min | | Speaking time | [X] min | ### Words | Metric | Value | |--------|-------| | Unique words | [X] ([Y]%) | | Avg word length | [X] chars | | Longest word | [word] ([X] chars) | ### Sentences | Metric | Value | |--------|-------| | Avg length | [X] words | | Longest | [X] words | | Shortest | [X] words | ``` ## Calculations - **Reading time**: words ÷ 238 (average adult reading speed) - **Speaking time**: words ÷ 150 (average speaking pace) - **Unique words**: distinct words ÷ total words × 100 ## Keep It Simple - Tables for metrics - No unnecessary prose - No recommendations unless asked - Just the numbers