$npx -y skills add humanizerai/agent-skills --skill word-statsGet word count, character count, reading time, and text statistics. Quick analysis without questions.
| 1 | # Word Statistics |
| 2 | |
| 3 | Provide quick, accurate statistics about the provided text. |
| 4 | |
| 5 | ## Input |
| 6 | |
| 7 | The user provides text in $ARGUMENTS. |
| 8 | |
| 9 | **Important:** If text is provided, immediately output stats. Don't ask clarifying questions - they want the numbers. |
| 10 | |
| 11 | ## Output Format |
| 12 | |
| 13 | ``` |
| 14 | ## Word Statistics |
| 15 | |
| 16 | ### Counts |
| 17 | | Metric | Value | |
| 18 | |--------|-------| |
| 19 | | Words | [X] | |
| 20 | | Characters (with spaces) | [X] | |
| 21 | | Characters (no spaces) | [X] | |
| 22 | | Sentences | [X] | |
| 23 | | Paragraphs | [X] | |
| 24 | |
| 25 | ### Time |
| 26 | | Metric | Value | |
| 27 | |--------|-------| |
| 28 | | Reading time | [X] min | |
| 29 | | Speaking time | [X] min | |
| 30 | |
| 31 | ### Words |
| 32 | | Metric | Value | |
| 33 | |--------|-------| |
| 34 | | Unique words | [X] ([Y]%) | |
| 35 | | Avg word length | [X] chars | |
| 36 | | Longest word | [word] ([X] chars) | |
| 37 | |
| 38 | ### Sentences |
| 39 | | Metric | Value | |
| 40 | |--------|-------| |
| 41 | | Avg length | [X] words | |
| 42 | | Longest | [X] words | |
| 43 | | Shortest | [X] words | |
| 44 | ``` |
| 45 | |
| 46 | ## Calculations |
| 47 | |
| 48 | - **Reading time**: words ÷ 238 (average adult reading speed) |
| 49 | - **Speaking time**: words ÷ 150 (average speaking pace) |
| 50 | - **Unique words**: distinct words ÷ total words × 100 |
| 51 | |
| 52 | ## Keep It Simple |
| 53 | |
| 54 | - Tables for metrics |
| 55 | - No unnecessary prose |
| 56 | - No recommendations unless asked |
| 57 | - Just the numbers |