Back to skills
extension
Category: Data & AnalyticsNo API key required

游戏资讯聚合

Fetch, aggregate, and search the latest gaming news from Chinese platforms (Gcores, Yystv, Chuapp, Gamersky, GameRes, GameGyro, GameLook, Indienova, 3DMGame, IGN China). Trigger this skill when the user asks for gaming news, game industry updates, or wants to check what's new on Chinese gaming portals.

personAuthor: user_e6b284c9hubcommunity

Chinese Game News Aggregation Skill

This skill allows the agent to fetch the latest articles, industry analysis, indie game spotlights, and general news from key Chinese game media portals.

🛠️ Usage Instructions

To retrieve or search game news, run the Python script fetch_news.py under the skill's scripts/ directory:

python .agents/skills/game_news/scripts/fetch_news.py [options]

Options:

  • --source <source_name>: Filter by a specific platform. Supported platforms:
    • gcores: 机核网 (Console/Core gaming culture & podcasts)
    • yystv: 游研社 (Game history, culture, and features)
    • chuapp: 触乐网 (In-depth game features and indie news)
    • gamersky: 游民星空 (General gaming news, reviews, and updates)
    • 3dmgame: 3DMGame (PC gaming news and mods)
    • gameres: GameRes游资网 (Game developer community & news)
    • youxituoluo: 游戏陀螺 (Game entrepreneurship & industry trends)
    • gamelook: 游戏大观 (B2B industry reports and news)
    • indienova: Indienova (Independent game reviews and dev blogs)
    • ign: IGN中国 (IGN Chinese edition)
    • all (default): Aggregate from all platforms
  • --limit <number>: Number of articles to return per source (default is 5).
  • --format <markdown|json>: Output format (default is markdown). Use json if you want to parse the structured data.
  • --query <keyword>: Only return articles whose title contains the specified keyword (case-insensitive).

💡 Example Commands

  1. Get the latest 3 articles from all platforms (default Markdown):

    python .agents/skills/game_news/scripts/fetch_news.py --limit 3
    
  2. Search all news for articles mentioning "塞尔达" (Zelda):

    python .agents/skills/game_news/scripts/fetch_news.py --query "塞尔达"
    
  3. Fetch only Indie news from Indienova in JSON format:

    python .agents/skills/game_news/scripts/fetch_news.py --source indienova --format json