AI-powered daily digest — aggregates insights from X/Twitter builders, tech media RSS, blogs, and podcasts into a unified bilingual timeline. Use when the user wants to manage sources, generate digests, or modify the report format.
Resources
18Install
npx skillscat add mine77/daily-info-digest Install via the SkillsCat registry.
SKILL.md
Daily Info Digest
An AI-powered content curation system that tracks builders in AI and delivers a daily digest of their insights.
Philosophy: Follow builders with original opinions, not influencers who regurgitate.
Project Context
Before making changes, read these files:
ROADMAP.md— current phase and planned featuresCONTEXT.md— shared language and domain terminologyCLADUE.md— coding behavior guidelinesdocs/adr/— architectural decisions
File Structure
Daily-Info-Digest/
├── ROADMAP.md # Three-phase roadmap
├── CONTEXT.md # Project glossary and domain language
├── CLAUDE.md # AI coding guidelines
├── SKILL.md # This file
├── docs/
│ └── adr/ # Architecture Decision Records
├── web/
│ ├── app.py # Flask dashboard + report generator
│ ├── templates/ # Jinja2 templates
│ ├── static/ # CSS, JS, generated reports
│ └── data/
│ └── sources.json # User-managed source list
├── scripts/
│ ├── generate-feed.js # Fetches X/Twitter, blogs, podcasts
│ ├── prepare-digest.js # Prepares data for consumption
│ └── deliver.js # Telegram/email delivery
├── prompts/ # LLM prompt templates
└── config/ # JSON schemas and defaultsDaily Digest Generation Flow
1. generate-feed.js → Fetches raw content from all sources
2. prepare-digest.js → Aggregates and structures the data
3. app.py (build_report_html) → Generates bilingual HTML report
4. Static report served via Flask dashboardCommands
Generate today's digest:
cd /root/workspace/agent-workspace/Daily-Info-Digest/web
python3 app.py generateRestart web service:
sudo systemctl restart follow-builders-webTest report locally:
curl -s http://127.0.0.1:25520/latestKey Technical Details
- X API: Uses X API v2 with Bearer Token. Fetches tweets, media attachments, and quoted tweets.
- RSS: Parses RSS feeds with regex (no XML parser dependency). Filters by AI keywords.
- Translation: Google Translate free endpoint (
translate.googleapis.com). Falls back to English on failure. - Reports: Self-contained HTML files in
web/static/reports/YYYY-MM-DD.html - Dashboard: Flask on
127.0.0.1:25520, nginx reverse proxy tofb.x-nuwa.com:8445
Adding a New Source
- Determine source type:
rss,hackernews,x,blog, orpodcast - For RSS: add to
web/data/sources.jsonundermedia_sites - For X: add to
web/data/sources.jsonunderx_accounts - For blog/podcast: add to
web/data/sources.jsonunder appropriate key - Test fetch:
python3 app.py generate - Verify item appears in timeline
Environment
- VPS with root privileges (be cautious)
- Port 443 is reserved for Xray Reality VPN — never touch it
- GitHub repo:
Mine77/agent-workspace(project underDaily-Info-Digest/)