🔗 Based on news-aggregator-skill | 專注於中國宏觀經濟新聞的垂直擴展
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionlist-china-today-macro-newsExecute the skills CLI command in your project's root directory to begin installation:
Fetches list-china-today-macro-news from fatfingererr/macro-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate list-china-today-macro-news. Access via /list-china-today-macro-news in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
3
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
3
stars
🔗 Based on news-aggregator-skill | 專注於中國宏觀經濟新聞的垂直擴展
從多個中文財經新聞源抓取並篩選中國宏觀經濟相關新聞,提供 AI 深度解讀。
Usage:
### 基本用法:抓取華爾街日報的中國宏觀新聞
python scripts/fetch_china_macro_news.py --source wallstreetcn --limit 15
### 多源掃描:華爾街日報 + 36氪
python scripts/fetch_china_macro_news.py --source wallstreetcn,36kr --limit 10
### 深度抓取(下載文章內容)
python scripts/fetch_china_macro_news.py --source wallstreetcn --limit 10 --deep
CRITICAL: 當用戶給出簡單關鍵字時,自動擴展覆蓋相關領域:
--keyword "利率,LPR,MLF,降息,加息,PBOC,央行"--keyword "通膨,CPI,PPI,物價,通縮"--keyword "貿易,進出口,順差,關稅,海關"# Example: User asked for "央行新聞" (Note the expanded keywords)
python scripts/fetch_china_macro_news.py --source wallstreetcn --limit 20 --keyword "央行,PBOC,利率,LPR,MLF,降息,降準" --deep
Arguments:
--source: One of wallstreetcn, 36kr, all (default: wallstreetcn).--limit: Max items per source (default 15).--keyword: Comma-separated filters (default: 宏觀相關關鍵字).--deep: [NEW] Enable deep fetching. Downloads and extracts the main text content of the articles.Output:
JSON array. If --deep is used, items will contain a content field associated with the article text.
腳本預設使用以下關鍵字篩選中國宏觀新聞:
央行,PBOC,利率,LPR,MLF,降息,降準,
GDP,PMI,CPI,PPI,通膨,通縮,
經濟,宏觀,財政,貨幣政策,
貿易,進出口,順差,逆差,
就業,失業,消費,零售,
房地產,樓市,投資,基建,
人民幣,匯率,外匯,
債券,國債,信貸,社融,M2
When the user says "今日中國宏觀新聞" (or similar "menu/help" triggers):
templates.md in the skill directory.If the user requests a specific time window (e.g., "過去 X 小時") and the results are sparse (< 5 items):
Format & Style:
### 1. [央行宣布降準 0.5 個百分點](https://...)### 1. 央行宣布降準 0.5 個百分點Output Artifact:
reports/ directory with a timestamped filename (e.g., reports/china_macro_YYYYMMDD_HHMM.md).| 來源 | 說明 | 適用場景 |
|---|---|---|
| 華爾街日報 | 中國頂級財經媒體,宏觀/市場新聞即時性強 | 央行政策、市場動態、數據解讀 |
| 36氪 | 科技財經媒體,涵蓋宏觀經濟快訊 | 經濟政策、產業動態 |
# 今日中國宏觀新聞摘要(2026-01-20)
> 掃描時間:11:30 | 來源:華爾街日報、36氪 | 共 12 條相關新聞
---
## 🔥 頭條焦點
### 1. [央行今日開展 5000 億 MLF 操作,利率持平](https://wallstreetcn.com/...)
📍 華爾街日報 | 🕐 09:45 | 🔥 高關注
央行維持 MLF 利率不變,符合市場預期。
- **核心要點**:本月 MLF 到期量 4500 億,淨投放 500 億
- **市場影響**:短期流動性維持寬鬆,LPR 大概率持平
- **後續觀察**:關注月末資金面與下月降準窗口
### 2. [12 月 PMI 回升至 50.1,製造業重返擴張區間](https://wallstreetcn.com/...)
📍 華爾街日報 | 🕐 10:00 | 🔥 重要數據
官方製造業 PMI 小幅回升,結束連續兩個月收縮。
- **數據亮點**:新訂單指數回升 0.3 個百分點
- **結構分化**:大型企業穩健,中小企業仍承壓
- **政策含義**:穩增長政策效果初顯,但基礎尚不穩固
---
## 💰 央行與貨幣政策
### 3. [1 月 LPR 報價出爐:1 年期 3.10%、5 年期 3.60% 均持平](https://...)
...
---
*報告由 list-china-today-macro-news skill 自動生成*
*🔗 Powered by [news-aggregator-skill](https://github.com/anthropics/news-aggregator-skill)*
This skill is built upon and extends the architecture of news-aggregator-skill.
news-aggregator-skill/scripts/fetch_news.py🔗 Based on news-aggregator-skill by Anthropic
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Keeps context tight: list-china-today-macro-news is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added list-china-today-macro-news from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for list-china-today-macro-news matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: list-china-today-macro-news is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for list-china-today-macro-news matched our evaluation — installs cleanly and behaves as described in the markdown.
list-china-today-macro-news is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
list-china-today-macro-news reduced setup friction for our internal harness; good balance of opinion and flexibility.
Useful defaults in list-china-today-macro-news — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added list-china-today-macro-news from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Solid pick for teams standardizing on skills: list-china-today-macro-news is focused, and the summary matches what you get after install.
showing 1-10 of 41