在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用word-counter
星标6
分支0
更新时间2026年2月26日 14:52
Count word frequencies in text
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
Count word frequencies in text
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Echoes input back as output — tests input/output round-trip
Analyze CSV data and produce summary statistics with a chart
Reports sandbox environment variables — tests env injection
Produces multiple file artifacts — tests artifact collection
Extract text content from a base64-encoded PDF
Produce a summary of input text using extractive summarization
| name | word-counter |
| version | 1.0.0 |
| description | Count word frequencies in text |
| lang | python |
| image | python:3.12-slim |
| timeout | 30s |
| resources | {"memory":"128Mi","cpu":"0.5"} |
Count word frequencies in input text and return the top N most common words.
text (string, required): The text to analyzetop_n (integer, optional): Number of top words to return (default: 10)total_words: Total word countunique_words: Number of unique wordstop_words: Array of {word, count} objects