Install
openclaw skills install @xiiang0529/group-deduplicateSearch for WeChat/QQ/industry groups with automatic deduplication using memory-cache. Finds new groups only, avoids pushing duplicates, and caches discovered groups for 30 days. Use when you need to discover and track unique community groups without repetition.
openclaw skills install @xiiang0529/group-deduplicateAutomatically searches for community groups (WeChat, QQ, industry groups) and filters out duplicates using memory-cache with MD5-based keys and 30-day TTL.
mema:groups:{群名MD5} key formatSearch for new groups in a specific industry or topic:
# Search for new AI industry groups
python3 $WORKSPACE/skills/group-deduplicate/scripts/search_groups.py --query "AI 人工智能 群" --max-results 10
# Search for new WeChat groups about blockchain
python3 $WORKSPACE/skills/group-deduplicate/scripts/search_groups.py --query "区块链 区块链技术 微信群" --platform wechat --max-results 5
View current cached groups or clear cache:
# See all cached groups
python3 $WORKSPACE/skills/group-deduplicate/scripts/cache_manager.py list
# Clear expired cache entries
python3 $WORKSPACE/skills/group-deduplicate/scripts/cache_manager.py cleanup
# Check specific group existence
python3 $WORKSPACE/skills/group-deduplicate/scripts/cache_manager.py check "群名称"
This skill assumes memory-cache is already installed. If not:
openclaw clawhub install memory-cache
scripts/search_groups.pyMain search script with deduplication logic:
--query: Search query (required)--platform: Target platform (wechat, qq, industry, all) - default: all--max-results: Maximum results to return - default: 10--use-cache: Enable deduplication (default: true)--ttl-days: Cache TTL in days (default: 30)scripts/cache_manager.pyCache management interface:
list: Show all cached groupscheck <group-name>: Check if group exists in cacheadd <group-name>: Manually add group to cacheremove <group-name>: Remove group from cachecleanup: Remove expired entriesstats: Show cache statisticsmema:groups:{md5_hash_of_group_name}
When running a search, you'll get:
Found 3 new groups:
1. AI技术交流群 (WeChat) - https://...
2. Machine Learning论坛 (Industry) - https://...
3. Deep Learning实战QQ群 (QQ) - https://...
Cached 3 new groups with 30-day TTL.
If you see "Redis connection failed":
If searches return no results: