← スキル一覧に戻る

tournament-source-registry
by Smarter-Poker
Smarter-Poker-World-Hub
⭐ 0🍴 0📅 2026年1月26日
SKILL.md
name: Tournament Source Registry description: Authoritative registry of verified source URLs for all 40 poker tournament brands. Use this skill when scraping tournament data.
Tournament Source Registry Skill
Purpose
This skill provides the authoritative source of truth for all poker tournament scraping operations. Every tournament brand has a verified source URL that MUST be used when building scrapers.
🚨 MANDATORY: Before Any Scraping Operation
- Consult this registry before scraping any tournament data
- Use ONLY the URLs listed here as your source of truth
- Never invent or extrapolate tournament data
- Cite the source URL in all generated SQL
40 Canonical Tournament Brands
A-Tier: Major Tours (Official Websites)
| Brand | Source URL | Scrape Method |
|---|---|---|
| WSOP | https://www.wsop.com/tournaments/ | HTML Table |
| WSOP Circuit | https://www.wsop.com/tournaments/ | HTML Table |
| WPT | https://www.wpt.com/schedule/ | JSON API |
| WPT Prime | https://www.wpt.com/schedule/ | JSON API |
| MSPT | https://msptpoker.com/schedule/ | HTML Cards |
| RGPS | https://rungoodpokerseries.com/schedule/ | HTML Cards |
| PokerStars NAPT | https://www.pokerstarslive.com/napt/ | HTML Table |
| PokerGO Tour | https://www.pokergo.com/schedule | JSON API |
| Roughrider | https://roughriderpokertour.com/schedule/ | HTML Cards |
| Bar Poker Open | https://barpokeropen.com/events/ | HTML Cards |
| FPN | https://freepokernetwork.com/events/ | HTML Cards |
| LIPS | https://www.lipspoker.com/schedule/ | Manual |
| Card Player Cruises | https://www.cardplayercruises.com/cruises/ | Manual |
B-Tier: Vegas Venues (PokerAtlas Preferred)
C-Tier: Regional Venues (PokerAtlas)
D-Tier: Texas Rooms
Special Status
| Brand | Status |
|---|---|
| HPT | ❌ DEFUNCT - Tour closed 2019 |
| Regional | https://www.pokeratlas.com/poker-tournaments |
Database Schema
The poker_series table includes these scrape-tracking columns:
scrape_url TEXT -- Authoritative source URL
last_scraped TIMESTAMPTZ -- Last successful scrape timestamp
events_count INTEGER -- Number of events in series
SQL Template for New Series
INSERT INTO poker_series (
series_uid, tour, series_name, venue, city, state, country,
start_date, end_date, source, scrape_url
) VALUES (
'series-uid-here',
'TOUR_NAME',
'Series Name Here',
'Venue Name',
'City',
'ST',
'USA',
'2026-MM-DD',
'2026-MM-DD',
'Source Name',
'https://source-url-here.com/schedule/'
) ON CONFLICT (series_uid) DO UPDATE SET
scrape_url = EXCLUDED.scrape_url,
updated_at = NOW();
Scraper Implementation Pattern
// Each tour gets its own scraper module
const TOUR_SCRAPERS = {
'WSOP': {
url: 'https://www.wsop.com/tournaments/',
parser: parseWSOP,
selector: '.tournament-row'
},
'MSPT': {
url: 'https://msptpoker.com/schedule/',
parser: parseMSPT,
selector: '.event-card'
}
// ... etc
};
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です