Financial News Intelligence
Discover and extract financial news for portfolio companies via Apify Actors. Two modes:
- Single company — news scan for one company.
- Portfolio scan — same pipeline run across multiple companies.
33 Tier 1 sources organized in 4 categories (Global / Pan-European / Institutional / CEE Local). Tier 2 = broad Google News fallback for unverified domains.
Estimated cost: $0.10–0.50 per single company, $1–5 per full portfolio scan.
Prerequisites
- Apify access — preferred:
apify CLI (npm install -g apify-cli && apify login); fallback: Apify MCP connector (call-actor tool). CLI is faster and preferred when both are available.
- Python 3 +
pip install readability-lxml lxml (for the extract_and_clean.py post-processor)
- Companies data at
${CLAUDE_PLUGIN_ROOT}/data/companies.json
${CLAUDE_PLUGIN_ROOT} is the plugin's root directory (where .claude-plugin/ lives). It is resolved automatically by Claude Code when the plugin is installed, or set to the --plugin-dir path during development.
Workflow checklist
Copy this and tick boxes as you progress:
Task Progress:
- [ ] Step 0: Verify prerequisites — try `apify --version && apify info`; if unavailable, check for `call-actor` MCP tool; if neither, tell user to install apify CLI or Apify MCP connector. Also verify: `python3 -c "from readability import Document; print('OK')"` (install: `pip install readability-lxml lxml`)
- [ ] Step 1: Build queries (look up company in data/companies.json or construct manually)
- [ ] Step 2: Discovery — pick 8-12 sources by region, run 2-phase Google News
- [ ] Step 3: Dedup + route (Tier 1 = whitelisted domain → verified extractor; Tier 2 = broad → rag-web-browser)
- [ ] Step 4: Extract & clean (run extractor, then extract_and_clean.py)
- [ ] Step 5: Output Tier 1 + Tier 2 tables to user
Constraints
Allowed Apify Actors (exhaustive — do NOT use others)
| Actor |
Purpose |
data_xplorer/google-news-scraper-fast |
Google News discovery |
louvre/rss-news-aggregator |
RSS discovery |
rodrigo_pacelli/headline-news-scraper |
Headline discovery |
jamie_tran/bloomberg-article-scraper |
Bloomberg extraction |
romy/bloomberg-news-scraper |
Bloomberg fallback |
workhard3000/news-intelligence-rag-extractor |
Paywall extraction |
apify/rag-web-browser |
Free/soft-paywall + Tier 2 |
stanvanrooy6/universal-ai-web-scraper |
Hard paywall (Barron's, MarketWatch) — $0.25/page |
Do NOT use any other actor. Do NOT use WebSearch, WebFetch, or browser tools.
Extractor routing (mandatory — do NOT substitute)
| Extractor |
Domains |
jamie_tran/bloomberg-article-scraper |
bloomberg.com |
workhard3000/news-intelligence-rag-extractor |
ft.com, wsj.com, economist.com, morningstar.com, asia.nikkei.com, caixinglobal.com, zawya.com, euobserver.com, reuters.com |
apify/rag-web-browser |
cnbc.com, forbes.com, investors.com, lesechos.fr, afr.com, scmp.com, euronews.com, intellinews.com, handelsblatt.com, politico.eu, eubusiness.com, eureporter.co, ecb.europa.eu, + all 7 CEE Local |
stanvanrooy6/universal-ai-web-scraper |
barrons.com, marketwatch.com |
| REST API (presscorner) |
ec.europa.eu |
Full per-source config: reference/SOURCE_CONFIGS.md. Machine-readable: data/sources.json.
Pipeline
Step 1: Build queries
Look up company in ${CLAUDE_PLUGIN_ROOT}/data/companies.json. Key fields under queries: gnews_en, gnews_cz, bloomberg.
For non-portfolio companies, construct manually: quoted full legal name + ticker OR variant + geographic qualifier.
Query rules:
- Use
"InPost SA" not InPost (quoted full names avoid false positives — see reference/EUROPEAN_COMPANIES_GUIDE.md)
- Per-source
site: operator: site:bloomberg.com "InPost SA" OR "INPST"
- FT tip: use
site:ft.com/content/ (bare ft.com returns stock-data pages)
- Valid timeframes:
"1h", "1d", "7d", "1y", "all" (NOT "30d")
- Tickers < 4 chars: always pair with full company name
- ALWAYS set
decodeUrls: true on Google News input
Step 2: Discovery
Do NOT search all 33 sources. Pick 8–12 based on company region.
Regional priorities
| Region |
Priority Sources |
| CZ |
ČTK, IntelliNews, Reuters, Bloomberg, POLITICO EU, FT, Handelsblatt |
| PL |
PAP, IntelliNews, Reuters, Bloomberg, POLITICO EU, FT |
| HU |
Telex.hu, HVG.hu, VG.hu, IntelliNews, Reuters, Bloomberg |
| BG |
BTA, IntelliNews, Reuters, Bloomberg, Euronews |
| SK |
TASR, IntelliNews, Reuters, Bloomberg, Handelsblatt |
| Western Europe |
Bloomberg, Reuters, FT, Handelsblatt, Les Echos, POLITICO EU |
| US / Global |
Bloomberg, Reuters, WSJ, FT, CNBC, Forbes, Barron's |
| Asia / MENA |
Bloomberg, Reuters, SCMP, Nikkei, Caixin, Zawya |
| EU Regulatory |
POLITICO EU, EUobserver, EUbusiness, EU Reporter, EC Press Corner, ECB |
Two-phase Google News strategy
Phase 1 — Targeted (per priority source, with site:):
apify call data_xplorer/google-news-scraper-fast \
--input '{"keywords":["site:bloomberg.com \"InPost SA\" OR \"INPST\""],"maxArticles":10,"timeframe":"7d","region_language":"US:en","decodeUrls":true,"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]}}' \
--user-agent apify-awesome-skills/apify-financial-news \
--output-dataset > discovery_bloomberg.json
Phase 2 — Broad (always run, no site: operator). Classify results by domain in Step 3 — whitelisted → Tier 1, others → Tier 2.
CEE local-language discovery: For CEE companies, run additional queries with region_language set to CZ:cs, PL:pl, HU:hu, BG:bg, SK:sk. See region_language field per source in data/sources.json.
EC Press Corner — direct REST API (no Actor)
curl -s "https://ec.europa.eu/commission/presscorner/api/documents?reference=IP/26/614&language=en"
Parse IP_XX_NNN reference IDs from Google News titles to construct API calls.
RSS / Headline discovery (optional)
For sources with RSS, you can supplement GNews with louvre/rss-news-aggregator (max 10 feeds per run; split into batches). For 6 sources, rodrigo_pacelli/headline-news-scraper works (CNBC, SCMP, Nikkei, Caixin, Zawya tag-pages-only, Handelsblatt). RSS/headline output is unfiltered — filter client-side by company name in title/description. Full feed list: reference/PIPELINE_DETAIL.md.
Step 3: Dedup & route
- Collect URLs from all discovery runs.
- Classify by domain: whitelist (33 Tier 1 sources) → Tier 1; other → Tier 2.
- Filter non-article URLs:
/quote/, /stock/, /sitemap, /author/, /tag/, /key-metrics/, /newsletters/, /topic/, /profile/, redirectUrl=.
- Filter by company name/ticker in title.
- Deduplicate (URL normalize).
- Route Tier 1 URLs to verified extractor per routing table.
- Route Tier 2 URLs to
apify/rag-web-browser.
Low-coverage fallback (< 3 articles): broaden timeframe to "1y", run Phase 2 if skipped, try local-language queries.
Step 4: Extract & clean
Run the extractor per the routing table. For rag-web-browser calls, use outputFormats: ["html"].
After extraction, run extract_and_clean.py on the dataset to strip nav/menus/footers via readability-lxml. The script auto-detects format: HTML cleaned via readability-lxml, already-clean output (Bloomberg scraper, workhard3000) passes through.
DATASET_ID=$(apify call apify/rag-web-browser \
--input '{"query":"<ARTICLE_URL>","maxResults":1,"outputFormats":["html"],"requestTimeoutSecs":40,"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]},"removeCookieWarnings":true}' \
--user-agent apify-awesome-skills/apify-financial-news \
--json | jq -r '.defaultDatasetId')
python3 ${CLAUDE_PLUGIN_ROOT}/skills/apify-financial-news/reference/scripts/extract_and_clean.py "$DATASET_ID"
The --json flag returns run metadata including defaultDatasetId. Errors produce non-zero exit code so the pipeline fails fast.
Step 5: Output
Two tables to the user — Tier 1 (verified) and Tier 2 (broad). Per article: source, title, author, date, char count, URL.
## News Intelligence: InPost (INPST.AS) — Last 7 days
### Tier 1 — Verified Sources (2)
| Source | Title | Author | Date | Chars | URL |
|--------|-------|--------|------|-------|-----|
| bloomberg.com | InPost Readies AI Shopping Assistant | K. Krasuski | 2026-03-19 | 7,577 | … |
### Tier 2 — Broad Discovery (5)
| Source | Title | Date | Chars | URL |
|--------|-------|------|-------|-----|
| seekingalpha.com | InPost expands parcel locker network | 2026-03-18 | 1,200 | … |
*Sources: 6 verified queried | 5 broad | Cost: $0.15*
Macro context
For country-level economic context, use these alongside news scans:
- ING Think (
think.ing.com) — daily CEE FX/rates via apify/rag-web-browser (~11K chars). Best free open-access CEE macro source.
- IMF (
imf.org) — Article IV concluding statements via apify/rag-web-browser (~22K chars).
- ECB (
ecb.europa.eu) — already in Tier 1.
- Central banks (ČNB, NBP, MNB, BNB, NBS) — direct URL extraction; see reference/MACRO_SOURCES.md.
Critical gotchas
- ALWAYS
decodeUrls: true in Google News (encoded redirects break ALL extractors).
- "InPost" is ambiguous — matches "post-Maduro". Use
"InPost SA" for precision.
- RSS max 10 feeds per run — split into batches.
- Zawya headline-scraper returns tag pages, NOT articles — exclude from headline runs.
- Reuters needs RESIDENTIAL proxy — without it, returns 386 chars.
- Reuters: rag-web-browser returns 0 chars on ~60% of URLs — use workhard3000 only.
- Morningstar
.co.uk URLs fail with workhard3000 — use .com URLs for extraction.
- WSJ livecoverage pages fail — skip URLs matching
wsj.com/livecoverage/.
- FT: rag-web-browser returns 16 chars ('Client Challenge') — use workhard3000.
- Forbes: workhard3000 returns 0 chars — use rag-web-browser.
- Barron's / MarketWatch cost $0.25/page — use selectively for high-value articles.
- Caixin URLs must be complete — truncated URLs fail extraction.
- EC Press Corner is an Angular SPA —
rag-web-browser returns 0 chars. Use REST API.
Full failure-mode catalog: reference/PIPELINE_DETAIL.md, reference/SOURCE_CONFIGS.md.
Reference
- data/sources.json — machine-readable: 33 sources × discovery × extractor × cost × gotchas
- reference/SOURCE_CONFIGS.md — per-source curl examples, run IDs, output samples
- reference/PIPELINE_DETAIL.md — RSS feeds, headline sources, warnings, failed paths, source quick-reference table
- reference/MACRO_SOURCES.md — ING Think, IMF, central banks
- reference/EUROPEAN_COMPANIES_GUIDE.md — European company handling tips
- reference/MORNING_NOTE_DETAIL.md — HTML output spec (archived; out of scope for this skill)
- reference/scripts/extract_and_clean.py, reference/scripts/clean_article.py — readability-lxml post-processors
1---2name: apify-financial-news3description: Discover and extract financial news for tracked portfolio companies across 33 verified Tier 1 sources (Bloomberg, Reuters, FT, WSJ, IntelliNews, ČTK, PAP, BTA, TASR, ING Think, ECB, EC Press Corner, ...) plus broad Google News fallback. Use when the user asks to find news about a company, get press coverage, monitor financial press, run a news scan, or check headlines for a portfolio company. Reads tracked companies from data/companies.json. Do NOT use for marketing/social-listening (use apify/awesome-skills) or for morning-briefing formatting (out of scope).4---56# Financial News Intelligence78Discover and extract financial news for portfolio companies via Apify Actors. Two modes:910- **Single company** — news scan for one company.11- **Portfolio scan** — same pipeline run across multiple companies.121333 Tier 1 sources organized in 4 categories (Global / Pan-European / Institutional / CEE Local). Tier 2 = broad Google News fallback for unverified domains.1415**Estimated cost**: $0.10–0.50 per single company, $1–5 per full portfolio scan.1617## Prerequisites1819- Apify access — preferred: `apify` CLI (`npm install -g apify-cli && apify login`); fallback: Apify MCP connector (`call-actor` tool). CLI is faster and preferred when both are available.20- Python 3 + `pip install readability-lxml lxml` (for the `extract_and_clean.py` post-processor)21- Companies data at `${CLAUDE_PLUGIN_ROOT}/data/companies.json`2223`${CLAUDE_PLUGIN_ROOT}` is the plugin's root directory (where `.claude-plugin/` lives). It is resolved automatically by Claude Code when the plugin is installed, or set to the `--plugin-dir` path during development.2425## Workflow checklist2627Copy this and tick boxes as you progress:2829```30Task Progress:31- [ ] Step 0: Verify prerequisites — try `apify --version && apify info`; if unavailable, check for `call-actor` MCP tool; if neither, tell user to install apify CLI or Apify MCP connector. Also verify: `python3 -c "from readability import Document; print('OK')"` (install: `pip install readability-lxml lxml`)32- [ ] Step 1: Build queries (look up company in data/companies.json or construct manually)33- [ ] Step 2: Discovery — pick 8-12 sources by region, run 2-phase Google News34- [ ] Step 3: Dedup + route (Tier 1 = whitelisted domain → verified extractor; Tier 2 = broad → rag-web-browser)35- [ ] Step 4: Extract & clean (run extractor, then extract_and_clean.py)36- [ ] Step 5: Output Tier 1 + Tier 2 tables to user37```3839## Constraints4041### Allowed Apify Actors (exhaustive — do NOT use others)4243| Actor | Purpose |44|-------|---------|45| `data_xplorer/google-news-scraper-fast` | Google News discovery |46| `louvre/rss-news-aggregator` | RSS discovery |47| `rodrigo_pacelli/headline-news-scraper` | Headline discovery |48| `jamie_tran/bloomberg-article-scraper` | Bloomberg extraction |49| `romy/bloomberg-news-scraper` | Bloomberg fallback |50| `workhard3000/news-intelligence-rag-extractor` | Paywall extraction |51| `apify/rag-web-browser` | Free/soft-paywall + Tier 2 |52| `stanvanrooy6/universal-ai-web-scraper` | Hard paywall (Barron's, MarketWatch) — $0.25/page |5354Do NOT use any other actor. Do NOT use WebSearch, WebFetch, or browser tools.5556### Extractor routing (mandatory — do NOT substitute)5758| Extractor | Domains |59|-----------|---------|60| `jamie_tran/bloomberg-article-scraper` | bloomberg.com |61| `workhard3000/news-intelligence-rag-extractor` | ft.com, wsj.com, economist.com, morningstar.com, asia.nikkei.com, caixinglobal.com, zawya.com, euobserver.com, reuters.com |62| `apify/rag-web-browser` | cnbc.com, forbes.com, investors.com, lesechos.fr, afr.com, scmp.com, euronews.com, intellinews.com, handelsblatt.com, politico.eu, eubusiness.com, eureporter.co, ecb.europa.eu, + all 7 CEE Local |63| `stanvanrooy6/universal-ai-web-scraper` | barrons.com, marketwatch.com |64| REST API (presscorner) | ec.europa.eu |6566Full per-source config: [reference/SOURCE_CONFIGS.md](reference/SOURCE_CONFIGS.md). Machine-readable: [data/sources.json](data/sources.json).6768## Pipeline6970### Step 1: Build queries7172Look up company in `${CLAUDE_PLUGIN_ROOT}/data/companies.json`. Key fields under `queries`: `gnews_en`, `gnews_cz`, `bloomberg`.7374For non-portfolio companies, construct manually: quoted full legal name + ticker OR variant + geographic qualifier.7576**Query rules:**77- Use `"InPost SA"` not `InPost` (quoted full names avoid false positives — see [reference/EUROPEAN_COMPANIES_GUIDE.md](reference/EUROPEAN_COMPANIES_GUIDE.md))78- Per-source `site:` operator: `site:bloomberg.com "InPost SA" OR "INPST"`79- FT tip: use `site:ft.com/content/` (bare `ft.com` returns stock-data pages)80- Valid timeframes: `"1h"`, `"1d"`, `"7d"`, `"1y"`, `"all"` (NOT `"30d"`)81- Tickers < 4 chars: always pair with full company name82- ALWAYS set `decodeUrls: true` on Google News input8384### Step 2: Discovery8586Do NOT search all 33 sources. Pick 8–12 based on company region.8788#### Regional priorities8990| Region | Priority Sources |91|--------|------------------|92| **CZ** | ČTK, IntelliNews, Reuters, Bloomberg, POLITICO EU, FT, Handelsblatt |93| **PL** | PAP, IntelliNews, Reuters, Bloomberg, POLITICO EU, FT |94| **HU** | Telex.hu, HVG.hu, VG.hu, IntelliNews, Reuters, Bloomberg |95| **BG** | BTA, IntelliNews, Reuters, Bloomberg, Euronews |96| **SK** | TASR, IntelliNews, Reuters, Bloomberg, Handelsblatt |97| **Western Europe** | Bloomberg, Reuters, FT, Handelsblatt, Les Echos, POLITICO EU |98| **US / Global** | Bloomberg, Reuters, WSJ, FT, CNBC, Forbes, Barron's |99| **Asia / MENA** | Bloomberg, Reuters, SCMP, Nikkei, Caixin, Zawya |100| **EU Regulatory** | POLITICO EU, EUobserver, EUbusiness, EU Reporter, EC Press Corner, ECB |101102#### Two-phase Google News strategy103104**Phase 1 — Targeted** (per priority source, with `site:`):105106```bash107apify call data_xplorer/google-news-scraper-fast \108 --input '{"keywords":["site:bloomberg.com \"InPost SA\" OR \"INPST\""],"maxArticles":10,"timeframe":"7d","region_language":"US:en","decodeUrls":true,"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]}}' \109 --user-agent apify-awesome-skills/apify-financial-news \110 --output-dataset > discovery_bloomberg.json111```112113**Phase 2 — Broad** (always run, no `site:` operator). Classify results by domain in Step 3 — whitelisted → Tier 1, others → Tier 2.114115**CEE local-language discovery**: For CEE companies, run additional queries with `region_language` set to `CZ:cs`, `PL:pl`, `HU:hu`, `BG:bg`, `SK:sk`. See `region_language` field per source in [data/sources.json](data/sources.json).116117#### EC Press Corner — direct REST API (no Actor)118119```bash120curl -s "https://ec.europa.eu/commission/presscorner/api/documents?reference=IP/26/614&language=en"121```122123Parse `IP_XX_NNN` reference IDs from Google News titles to construct API calls.124125#### RSS / Headline discovery (optional)126127For sources with RSS, you can supplement GNews with `louvre/rss-news-aggregator` (max 10 feeds per run; split into batches). For 6 sources, `rodrigo_pacelli/headline-news-scraper` works (CNBC, SCMP, Nikkei, Caixin, Zawya tag-pages-only, Handelsblatt). RSS/headline output is unfiltered — filter client-side by company name in title/description. Full feed list: [reference/PIPELINE_DETAIL.md](reference/PIPELINE_DETAIL.md).128129### Step 3: Dedup & route1301311. Collect URLs from all discovery runs.1322. Classify by domain: whitelist (33 Tier 1 sources) → Tier 1; other → Tier 2.1333. Filter non-article URLs: `/quote/`, `/stock/`, `/sitemap`, `/author/`, `/tag/`, `/key-metrics/`, `/newsletters/`, `/topic/`, `/profile/`, `redirectUrl=`.1344. Filter by company name/ticker in title.1355. Deduplicate (URL normalize).1366. Route Tier 1 URLs to verified extractor per routing table.1377. Route Tier 2 URLs to `apify/rag-web-browser`.138139**Low-coverage fallback** (< 3 articles): broaden timeframe to `"1y"`, run Phase 2 if skipped, try local-language queries.140141### Step 4: Extract & clean142143Run the extractor per the routing table. For `rag-web-browser` calls, use `outputFormats: ["html"]`.144145After extraction, run `extract_and_clean.py` on the dataset to strip nav/menus/footers via readability-lxml. The script auto-detects format: HTML cleaned via readability-lxml, already-clean output (Bloomberg scraper, workhard3000) passes through.146147```bash148DATASET_ID=$(apify call apify/rag-web-browser \149 --input '{"query":"<ARTICLE_URL>","maxResults":1,"outputFormats":["html"],"requestTimeoutSecs":40,"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]},"removeCookieWarnings":true}' \150 --user-agent apify-awesome-skills/apify-financial-news \151 --json | jq -r '.defaultDatasetId')152153python3 ${CLAUDE_PLUGIN_ROOT}/skills/apify-financial-news/reference/scripts/extract_and_clean.py "$DATASET_ID"154```155156The `--json` flag returns run metadata including `defaultDatasetId`. Errors produce non-zero exit code so the pipeline fails fast.157158### Step 5: Output159160Two tables to the user — **Tier 1 (verified)** and **Tier 2 (broad)**. Per article: source, title, author, date, char count, URL.161162```markdown163## News Intelligence: InPost (INPST.AS) — Last 7 days164165### Tier 1 — Verified Sources (2)166| Source | Title | Author | Date | Chars | URL |167|--------|-------|--------|------|-------|-----|168| bloomberg.com | InPost Readies AI Shopping Assistant | K. Krasuski | 2026-03-19 | 7,577 | … |169170### Tier 2 — Broad Discovery (5)171| Source | Title | Date | Chars | URL |172|--------|-------|------|-------|-----|173| seekingalpha.com | InPost expands parcel locker network | 2026-03-18 | 1,200 | … |174175*Sources: 6 verified queried | 5 broad | Cost: $0.15*176```177178## Macro context179180For country-level economic context, use these alongside news scans:181182- **ING Think** (`think.ing.com`) — daily CEE FX/rates via `apify/rag-web-browser` (~11K chars). Best free open-access CEE macro source.183- **IMF** (`imf.org`) — Article IV concluding statements via `apify/rag-web-browser` (~22K chars).184- **ECB** (`ecb.europa.eu`) — already in Tier 1.185- Central banks (ČNB, NBP, MNB, BNB, NBS) — direct URL extraction; see [reference/MACRO_SOURCES.md](reference/MACRO_SOURCES.md).186187## Critical gotchas188189- **ALWAYS `decodeUrls: true`** in Google News (encoded redirects break ALL extractors).190- **"InPost" is ambiguous** — matches "post-Maduro". Use `"InPost SA"` for precision.191- **RSS max 10 feeds per run** — split into batches.192- **Zawya headline-scraper returns tag pages, NOT articles** — exclude from headline runs.193- **Reuters needs RESIDENTIAL proxy** — without it, returns 386 chars.194- **Reuters: rag-web-browser returns 0 chars on ~60% of URLs** — use workhard3000 only.195- **Morningstar `.co.uk` URLs fail** with workhard3000 — use `.com` URLs for extraction.196- **WSJ livecoverage pages fail** — skip URLs matching `wsj.com/livecoverage/`.197- **FT: rag-web-browser returns 16 chars ('Client Challenge')** — use workhard3000.198- **Forbes: workhard3000 returns 0 chars** — use rag-web-browser.199- **Barron's / MarketWatch cost $0.25/page** — use selectively for high-value articles.200- **Caixin URLs must be complete** — truncated URLs fail extraction.201- **EC Press Corner is an Angular SPA** — `rag-web-browser` returns 0 chars. Use REST API.202203Full failure-mode catalog: [reference/PIPELINE_DETAIL.md](reference/PIPELINE_DETAIL.md), [reference/SOURCE_CONFIGS.md](reference/SOURCE_CONFIGS.md).204205## Reference206207- [data/sources.json](data/sources.json) — machine-readable: 33 sources × discovery × extractor × cost × gotchas208- [reference/SOURCE_CONFIGS.md](reference/SOURCE_CONFIGS.md) — per-source curl examples, run IDs, output samples209- [reference/PIPELINE_DETAIL.md](reference/PIPELINE_DETAIL.md) — RSS feeds, headline sources, warnings, failed paths, source quick-reference table210- [reference/MACRO_SOURCES.md](reference/MACRO_SOURCES.md) — ING Think, IMF, central banks211- [reference/EUROPEAN_COMPANIES_GUIDE.md](reference/EUROPEAN_COMPANIES_GUIDE.md) — European company handling tips212- [reference/MORNING_NOTE_DETAIL.md](reference/MORNING_NOTE_DETAIL.md) — HTML output spec (archived; out of scope for this skill)213- [reference/scripts/extract_and_clean.py](reference/scripts/extract_and_clean.py), [reference/scripts/clean_article.py](reference/scripts/clean_article.py) — readability-lxml post-processors