| name | feedgrab-setup |
| description | Install and configure feedgrab โ the universal content grabber. Use when user needs to set up feedgrab, configure API keys, login to platforms, or diagnose issues. |
| disable-model-invocation | true |
feedgrab Setup Guide
Install feedgrab, configure API keys, login to platforms, and verify everything works.
Trigger
/feedgrab-setup
- "Install feedgrab"
- "้
็ฝฎ feedgrab"
- When
/feedgrab reports "feedgrab not found"
Step 1: Check Python Environment
python3 --version 2>/dev/null || python --version 2>/dev/null
pip3 --version 2>/dev/null || pip --version 2>/dev/null
Requires Python โฅ 3.10. If not available, tell user to install Python first.
Step 2: Install feedgrab
pip install feedgrab[all]
This installs the full package with all optional dependencies (browser, stealth, Twitter, WeChat, Xiaohongshu, Feishu, Telegram).
For a minimal install:
pip install feedgrab
pip install feedgrab[browser]
pip install feedgrab[twitter]
pip install feedgrab[stealth]
After installation, verify:
feedgrab --help
Step 3: Interactive Setup
feedgrab setup
This runs a 5-step interactive wizard:
- Output directory โ where to save fetched content (default:
./output/)
- Jina API โ free, no key needed
- YouTube API Key โ optional, for YouTube search
- GitHub Token โ optional, for higher rate limits
- Creates
.env file with your configuration
Step 4: Platform Login (as needed)
For platforms requiring cookies/session:
feedgrab login twitter
feedgrab login xhs
feedgrab login wechat
feedgrab login feishu
feedgrab login reddit
feedgrab login linuxdo
feedgrab login idcflare
feedgrab login kdocs
feedgrab login zhihu
feedgrab login flowus
Tip: If you have Chrome running with remote debugging enabled, set CHROME_CDP_LOGIN=true in .env to extract cookies from your existing browser session without re-login.
Step 5: Verify Installation
feedgrab doctor
feedgrab doctor x
feedgrab doctor xhs
feedgrab doctor mpweixin
feedgrab doctor feishu
feedgrab doctor reddit
Step 6: Test
feedgrab https://github.com/iBigQiang/feedgrab
If the output .md file is generated successfully, setup is complete!
Advanced Configuration (.env)
Key environment variables (all optional):
# Output
OUTPUT_DIR=./output
# Proxy (optional)
FEEDGRAB_PROXY_ENABLED=false
FEEDGRAB_PROXY_URL=
FEEDGRAB_NO_PROXY=127.0.0.1,localhost
# Twitter
X_BOOKMARKS_ENABLED=true
X_USER_TWEETS_ENABLED=true
X_LIST_TWEETS_ENABLED=true
X_DOWNLOAD_MEDIA=true
X_SEARCH_LANG=zh
X_SEARCH_SORT=live
# Xiaohongshu
XHS_USER_NOTES_ENABLED=true
XHS_SEARCH_ENABLED=true
XHS_DOWNLOAD_MEDIA=true
XHS_FETCH_COMMENTS=true
XHS_PINIA_ENABLED=true
# WeChat
MPWEIXIN_DOWNLOAD_MEDIA=true
MPWEIXIN_FETCH_COMMENTS=true
# YouTube
YOUTUBE_API_KEY=your_key_here
YTDLP_COOKIES_BROWSER=chrome
# GitHub
GITHUB_TOKEN=your_token_here
# Feishu
FEISHU_APP_ID=your_app_id
FEISHU_APP_SECRET=your_secret
FEISHU_DOWNLOAD_IMAGES=true
FEISHU_CDP_ENABLED=false
# FlowUs
FLOWUS_CDP_ENABLED=true
FLOWUS_DOWNLOAD_IMAGES=false # false=signed online URLs, true=local attachments
# LinuxDo / Discourse
LINUXDO_CDP_ENABLED=true
LINUXDO_PAGE_LOAD_TIMEOUT=15000
LINUXDO_REPLY_MODE=author
# IDCFlare / Discourse
IDCFLARE_CDP_ENABLED=true
IDCFLARE_PAGE_LOAD_TIMEOUT=15000
IDCFLARE_REPLY_MODE=author
# Reddit
REDDIT_CDP_ENABLED=true
REDDIT_REPLY_MODE=top # top/tree/all
REDDIT_SEARCH_ENABLED=true
REDDIT_SEARCH_SORT=relevance
REDDIT_SEARCH_TIME_RANGE=all
# KDocs (้ๅฑฑๆๆกฃ)
KDOCS_CDP_ENABLED=false
KDOCS_DOWNLOAD_IMAGES=false
# Youdao Note (ๆ้ไบ็ฌ่ฎฐ)
YOUDAO_DOWNLOAD_IMAGES=false
# Zhihu (็ฅไน)
ZHIHU_CDP_ENABLED=false
# Bilibili subtitles / transcription
BILIBILI_SUBTITLE_LANG=zh-CN
BILIBILI_SUBTITLE_WHISPER=false
# Xiaoyuzhou / Ximalaya podcasts (require GROQ_API_KEY for transcription)
XIAOYUZHOU_WHISPER=true
XIMALAYA_WHISPER=true
GROQ_API_KEY=your_groq_key
# Paywall bypass (300+ news sites)
PAYWALL_ENABLED=true
PAYWALL_USE_AMP=true
PAYWALL_USE_ARCHIVE=true
PAYWALL_USE_GOOGLE_CACHE=true
# Stealth / CDP Cookie extraction
CHROME_CDP_LOGIN=true
CHROME_CDP_PORT=9222
See .env.example in the feedgrab repo for the full list.
Troubleshooting
| Issue | Solution |
|---|
pip install fails | Try pip install --user feedgrab[all] or use a virtualenv |
| Playwright not working | Run playwright install chromium |
| patchright not working | Run patchright install chromium |
| Cookie expired | Re-run feedgrab login <platform> |
| Windows encoding errors | feedgrab auto-fixes UTF-8, but ensure Python โฅ 3.10 |