Install
openclaw skills install @dkgee/comment-wordcloudGenerate word frequency statistics and word cloud from social media comments
openclaw skills install @dkgee/comment-wordcloudThis skill generates word frequency statistics and word cloud images from social media comment data.
Provide comment data in JSON format. The script will automatically:
Comment data should be in JSON format, each element contains a content field:
[
{"content": "This product is very useful"},
{"content": "High cost performance, recommend purchase"}
]
{output_dir}/word_freq.json: Word frequency statistics{output_dir}/word_cloud.png: Word cloud imagedata_source: Comment data file path (required)output_dir: Output directory (required)stop_words: Stop words file path (optional)custom_words: Custom vocabulary (optional, comma separated)max_words: Max words in word cloud (optional, default 200)python scripts/generate_wordcloud.py references/sample_comments.json output/ --max-words 10