X关注列表日报生成器 / X Followings Digest Generator
自动抓取你关注的人的最新推文,并生成结构化的AI日报。
Auto-fetch latest tweets from your followings and generate structured AI digest.
快速开始 / Quick Start
1. 配置X授权 / Configure X Auth
CODEBLOCK0
2. 获取关注列表推文 / Fetch Tweets
CODEBLOCK1
3. 生成日报 / Generate Digest
将获取到的推文内容,使用 analystprompt_template.md 中的提示词模板进行分析。
Feed the fetched tweets to the AI using the prompt template in references/analyst_prompt_template.md.
输出格式 / Output Format
日报包含以下分类(仅显示有内容的类别):
Digest includes (only shows categories with content):
- - 🔥 重大事件 / Major Events - 具体细节和影响分析 / Specific details & impact analysis
- 🚀 产品发布 / Product Releases - 新模型、API更新、工具版本 / New models, API updates, tools
- 💡 技术洞察 / Tech Insights - 技术方案、优化技巧、代码片段 / Technical solutions, optimizations
- 🔗 资源汇总 / Resources - 论文、开源项目、教程、工具 / Papers, OSS, tutorials, tools
- 🎁 福利羊毛 / Deals & Freebies - 免费额度、优惠、赠品 / Free credits, discounts, giveaways
- 📊 舆情信号 / Signals - 争议话题、预测、警告 / Controversies, predictions, warnings
语言设置 / Language Setting
在调用AI分析时,通过提示词指定输出语言:
When calling the AI, specify output language in the prompt:
- - 中文输出: 使用提示词中的 [中文] 部分
- English Output: Use the [EN] section in the prompt template
- 中英双语: 使用完整提示词,要求 bilingual output
依赖 / Dependencies
- -
bird CLI (X/Twitter client) - INLINECODE2 &
CT0 from browser cookies
注意事项 / Notes
- - 推文数量越多,处理时间越长
- More tweets = longer processing time
- 建议设置定时任务每日自动运行
- Recommended: set up cron job for daily auto-run
技能名称: x-followings-digest
详细描述:
X关注列表日报生成器 / X Followings Digest Generator
自动抓取你关注的人的最新推文,并生成结构化的AI日报。
Auto-fetch latest tweets from your followings and generate structured AI digest.
快速开始 / Quick Start
1. 配置X授权 / Configure X Auth
bash
export AUTHTOKEN=yourauth_token
export CT0=your_ct0
2. 获取关注列表推文 / Fetch Tweets
bash
默认最近1天 / Default: last 1 day
./scripts/fetch
followingstweets.sh
指定数量和时间 / Specify count & days
./scripts/fetch
followingstweets.sh 50 1 # 50条推文,1天 / 50 tweets, 1 day
./scripts/fetch
followingstweets.sh 50 3 # 50条推文,3天 / 50 tweets, 3 days
./scripts/fetch
followingstweets.sh 100 7 # 100条推文,7天(周报)/ 100 tweets, 7 days (weekly)
3. 生成日报 / Generate Digest
将获取到的推文内容,使用 analystprompt_template.md 中的提示词模板进行分析。
Feed the fetched tweets to the AI using the prompt template in references/analystprompttemplate.md.
输出格式 / Output Format
日报包含以下分类(仅显示有内容的类别):
Digest includes (only shows categories with content):
- - 🔥 重大事件 / Major Events - 具体细节和影响分析 / Specific details & impact analysis
- 🚀 产品发布 / Product Releases - 新模型、API更新、工具版本 / New models, API updates, tools
- 💡 技术洞察 / Tech Insights - 技术方案、优化技巧、代码片段 / Technical solutions, optimizations
- 🔗 资源汇总 / Resources - 论文、开源项目、教程、工具 / Papers, OSS, tutorials, tools
- 🎁 福利羊毛 / Deals & Freebies - 免费额度、优惠、赠品 / Free credits, discounts, giveaways
- 📊 舆情信号 / Signals - 争议话题、预测、警告 / Controversies, predictions, warnings
语言设置 / Language Setting
在调用AI分析时,通过提示词指定输出语言:
When calling the AI, specify output language in the prompt:
- - 中文输出: 使用提示词中的 [中文] 部分
- English Output: Use the [EN] section in the prompt template
- 中英双语: 使用完整提示词,要求双语输出 / Use full prompt, request bilingual output
依赖 / Dependencies
- - bird CLI (X/Twitter客户端 / X/Twitter client)
- 浏览器Cookie中的 AUTHTOKEN 和 CT0 / AUTHTOKEN & CT0 from browser cookies
注意事项 / Notes
- - 推文数量越多,处理时间越长
- More tweets = longer processing time
- 建议设置定时任务每日自动运行
- Recommended: set up cron job for daily auto-run