スキル一覧に戻る
Smarter-Poker

tournament-source-registry

by Smarter-Poker

Smarter-Poker-World-Hub

0🍴 0📅 2026年1月26日
GitHubで見るManusで実行

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

  1. Consult this registry before scraping any tournament data
  2. Use ONLY the URLs listed here as your source of truth
  3. Never invent or extrapolate tournament data
  4. Cite the source URL in all generated SQL

40 Canonical Tournament Brands

A-Tier: Major Tours (Official Websites)

B-Tier: Vegas Venues (PokerAtlas Preferred)

C-Tier: Regional Venues (PokerAtlas)

VenuePokerAtlas URL
Borgatahttps://www.pokeratlas.com/poker-room/borgata-poker-room/tournaments
Seminole Hard Rockhttps://www.pokeratlas.com/poker-room/seminole-hard-rock-hollywood/tournaments
bestbet Jacksonvillehttps://www.pokeratlas.com/poker-room/bestbet-jacksonville/tournaments
Bay 101https://www.pokeratlas.com/poker-room/bay-101-casino/tournaments
Thunder Valleyhttps://www.pokeratlas.com/poker-room/thunder-valley-casino-resort/tournaments
Gratonhttps://www.pokeratlas.com/poker-room/graton-resort-casino/tournaments
LAPC/Commercehttps://www.pokeratlas.com/poker-room/commerce-casino/tournaments
FireKeepershttps://www.pokeratlas.com/poker-room/firekeepers-casino-hotel/tournaments
Canterbury Parkhttps://www.pokeratlas.com/poker-room/canterbury-park/tournaments
Running Aceshttps://www.pokeratlas.com/poker-room/running-aces-casino/tournaments
Mohegan Sunhttps://www.pokeratlas.com/poker-room/mohegan-sun-casino/tournaments
Maryland Livehttps://www.pokeratlas.com/poker-room/maryland-live/tournaments
MGM National Harborhttps://www.pokeratlas.com/poker-room/mgm-national-harbor/tournaments
Beau Rivagehttps://www.pokeratlas.com/poker-room/beau-rivage-resort-casino/tournaments
Choctawhttps://www.pokeratlas.com/poker-room/choctaw-casino-durant/tournaments
Hard Rock Tulsahttps://www.pokeratlas.com/poker-room/hard-rock-tulsa/tournaments
Talking Stickhttps://www.pokeratlas.com/poker-room/talking-stick-resort/tournaments
JACK Clevelandhttps://www.pokeratlas.com/poker-room/jack-cleveland-casino/tournaments
Parx Casinohttps://www.pokeratlas.com/poker-room/parx-casino/tournaments

D-Tier: Texas Rooms

Special Status

BrandStatus
HPT❌ DEFUNCT - Tour closed 2019
Regionalhttps://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

レビュー

💬

レビュー機能は近日公開予定です