--- id: humanizerai/agent-skills/word-stats version: "7509e8eb" license: MIT install: manual updated: 2026-02-05 --- # word-stats — word-stats delivers immediate text metrics including word and character counts, reading and speaking time estimates, plus word-level insights like unique word percentage and sentence structure breakdowns. Input your text and receive clean, table-formatted results without prompts or extra commentary. Publisher: humanizerai · Stars: 35 · Updated: 2026-02-05 Install (manual): `git clone https://github.com/humanizerai/agent-skills` ## SKILL.md # 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 [View on SkillFed](https://skillfed.io/humanizerai/agent-skills/word-stats) · [View on GitHub](https://github.com/humanizerai/agent-skills)