Loading...
Loading...
Financial Hot Topic Selection Tool that obtains hot news through its built-in data crawling layer, and intelligently filters high-quality topics that can be associated with investment and financial management. Suitable for financial content creation scenarios that need to guide securities account opening and fund investment.
npx skill4agent add cyhzzz/finance_aigc_skills hot_topics_selectorPhase 0: Data Crawling (Python)
→ Obtain 133 news headlines
Phase 1: Agent Intelligent Screening (Markdown Prompt)
→ Filter out 5 topics
Phase 2: Content Crawling (Python)
→ Crawl detailed content of 5 news articles
Phase 3: Agent Intelligent Parsing (Markdown Prompt)
→ Generate 5 complete topic planscd scripts
python3 fetch_hot_topics.py/tmp/hot_topics.json{
"fetch_time": "2026-02-13T19:36:24+08:00",
"total_items": 133,
"data": {
"weibo": { "items": [...], "count": 30 },
"baidu": { "items": [...], "count": 30 }
}
}{
"selected_indices": [1, 3, 5, 7, 9],
"reasons": {
"1": "✅ Can directly link: AI money-making → AI fund investment. Investment relevance 95 points, high public attention",
"3": "✅ Can directly link: Gold case → Gold ETF. Investment relevance 92 points, strong data impact"
},
"investment_angles": {
"1": "Can recommend: AI-themed funds, tech stocks, brokerage AI products",
"3": "Can recommend: Gold ETF, brokerage gold products, asset allocation services"
},
"investment_relevance_score": {
"1": 95,
"3": 92
}
}cd scripts
python3 fetch_news_content.py \
--input /tmp/hot_topics.json \
--indices 1,3,5,7,9 \
--output /tmp/news_content.json/tmp/news_content.json{
"fetch_time": "2026-02-13T21:00:00+08:00",
"total_articles": 5,
"articles": [
{
"index": 1,
"title": "Hangzhou guy runs a 1-person company and earns 2 million yuan per month with AI",
"url": "https://...",
"platform": "Weibo",
"content": "Complete news content...",
"keywords": ["AI", "entrepreneurship", "earn 2 million per month"]
}
]
}Entry Point: AI entrepreneurship earns 2 million per month, triggering the thought "Can I do it too?"
Turning Point: Ordinary people don't have the skills, but can share the dividends through investment
Product Recommendation: AI-themed funds, tech ETFs, brokerage AI products
Script Examples:
"Want to participate in AI dividends? No need to have technical skills, investing in AI funds allows you to get a share"
"Open an account to buy AI funds, ordinary people can also enjoy the dividends of AI development"{
"topic_plans": [
{
"index": 1,
"title": "Hangzhou guy runs a 1-person company and earns 2 million yuan per month with AI",
"summary": "A Hangzhou entrepreneur operates a 1-person company through AI tools, with a monthly income of 2 million yuan. The main business is...",
"selection_reason": {
"investment_relevance": 95,
"mass_attention": "High (AI + money-making topic)",
"viral_potential": "Extremely strong (data impact of 2 million yuan monthly income)"
},
"guidance_strategy": {
"entry_point": "AI entrepreneurship earns 2 million per month, triggering the thought 'Can I do it too?'",
"turning_point": "Ordinary people don't have the skills, but can share AI dividends through investment",
"product_recommendation": "AI-themed funds, tech ETFs, brokerage AI products",
"script_examples": [
"Want to participate in AI dividends? Investing in AI funds allows you to get a share",
"Open an account to buy AI funds, ordinary people can also enjoy the dividends of AI development"
]
},
"source_url": "https://..."
}
]
}# Step 1: Data Crawling
python3 scripts/fetch_hot_topics.py
# Step 2: Agent Intelligent Screening
# Agent reads the Phase 1 prompt in this file and executes it
# Step 3: Content Crawling
python3 scripts/fetch_news_content.py \
--input /tmp/hot_topics.json \
--indices 1,3,5,7,9
# Step 4: Agent Intelligent Parsing
# Agent reads the Phase 3 prompt in this file and executes it