원클릭으로
google-news-rss
Platform rules, Taiwan filter, date extraction, and known quirks for the Google News RSS scraper
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Platform rules, Taiwan filter, date extraction, and known quirks for the Google News RSS scraper
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Planning principles, model selection, and scope rules for the Architect agent
Implementation rules for database migrations, Python scrapers, and Next.js web for the Engineer agent
BaseScraper contract, field rules, and Peatix-specific conventions for the Scraper Expert agent
Scraper test execution rules, output validation criteria, and report format for the Tester agent
BaseScraper contract, field rules, and Peatix-specific conventions for the Scraper Expert agent
Platform rules and field mappings for the 誠品生活日本橋 (eslite spectrum Nihonbashi) scraper
| name | google_news_rss |
| description | Platform rules, Taiwan filter, date extraction, and known quirks for the Google News RSS scraper |
Google News RSS search endpoint — returns up to ~10 articles per query, refreshed frequently.
Base URL: https://news.google.com/rss/search?q={q}&hl=ja&gl=JP&ceid=JP:ja
4 queries are fetched:
台湾 展覧会 イベント 日本台湾 フェスティバル 祭り台湾映画 上映台湾 講演 シンポジウム| Event field | Source |
|---|---|
source_name | "google_news_rss" |
source_id | gnews_{md5(article_url)[:12]} |
source_url | <guid> (if real URL) else <link> tag |
name_ja | <title> text |
raw_title | <title> text |
raw_description | "開催情報(Google News):\n\n{description_plain}" |
start_date | Extracted from description; fallback to pubDate |
category | ["report"] — annotator refines |
original_language | "ja" |
TAIWAN_KEYWORDS = ["台湾", "台灣", "Taiwan", "taiwan"]
# Applied to: title + " " + description_plain_text
YYYY年MM月DD日 in descriptionYYYY/MM/DD in descriptionMM月DD日 in description → use pubDate year (adjust ±1 year for wrap)Google RSS <link> tags are Google redirect URLs. Prefer <guid> when it starts with http and does not contain news.google.com. Otherwise use <link> as-is (no redirect following — keeps scraper fast).
source_id uses the article URL (guid or link), so the same article across different queries deduplicates correctly via dedup_events().start_date defaults to pubDate for news articles — the annotator is expected to refine it using the article body.is_active=false) rather than trying to preserve it as a streaming event.