返回 Skill 列表
extension
分类: 数据与分析无需 API Key

游戏资讯聚合

获取、汇总并搜索来自中国平台(Gcores、Yystv、Chuapp、Gamersky、GameRes、GameGyro、GameLook、Indienova、3DMGame、IGN China)的最新游戏资讯。当用户询问游戏新闻、游戏行业动态,或想了解中国游戏门户网站的最新内容时,触发此技能。

person作者: 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