SKILLEX

vigorX777 / content-collector-skill

content-collector

Collect social media content (X/Twitter, WeChat, Jike, Reddit, etc.) into Feishu bitable. **Use this skill whenever the user shares a link from any social platform, sends a screenshot, or mentions "收藏", "保存", "collect", "save this article".** Even if they don't explicitly ask to collect, trigger this skill proactively.

Preview

Auto-collect social media content → AI summarize → Save to Feishu bitable.

Quick Reference

TriggerAction
X/Twitter linkx-tweet-fetcher skill
WeChat articleweb-content-fetcher (Scrapling)
Other platformsdefuddle → fallback to baoyu-url-to-markdown
ScreenshotOCR → extract URL → collect

Workflow

Link/Screenshot → Platform Detect → Dedupe → Extract → Summarize → Save to Bitable
Step 1: Platform Detection
python3 scripts/extract_content.py "<url>"

Returns: platform_id, skill to use, fallback_skills, CSS selectors.

See references/platforms.md for full platform mapping.

Step 2: Deduplication
python3 scripts/deduplicate.py "<url>"           # Check if exists
python3 scripts/deduplicate.py --add "<url>"     # Add to cache after saving
Step 3: Extract Content

Call the skill returned by Step 1:

  • X/Twitter: Use x-tweet-fetcher skill
  • WeChat: Use web-content-fetcher skill (Scrapling)
  • Others: Use defuddle skill
Step 4: AI Summarize + 独立标签生成(v2.0)

> 2026-03-21 更新:采用独立生成模式,不再依赖历史标签池

SKILL.md