← Back to Skills Marketplace
wuchubuzai2018

Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill)

by 无处不在 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
35
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install haizei-worldcup-2026-skill
Description
获取2026年国际足联世界杯(美加墨世界杯)数据技能。从百度体育抓取48支参赛球队的分组配置、赛程、比赛详情(分析/阵容/赛况/统计/指数)、球队详情(资料/阵容/历史成绩/数据)、球员详情(资料/动态/数据/赛程)、排名数据(积分榜/球员榜/FIFA排名)等。当用户需要查询2026世界杯球队、赛程、比赛数据、阵...
README (SKILL.md)

2026年美加墨世界杯数据获取

从百度体育抓取 2026 美加墨世界杯数据。包含 48 支球队的分组配置、赛程、比赛详情、球队详情、球员详情、排名等。

路由表

用户需求 脚本 参考文档
赛事基本信息、48队分组 scripts/worldcup-teams.js info overview.md
球队配置(静态) scripts/worldcup-teams.js teams.md
全部赛程 / 今日赛程 / 按组按队查询 scripts/worldcup-schedule.js schedule.md
比赛情报 / 阵容 / 赛况 / 统计 / 指数 scripts/worldcup-match.js match.md
球队资料 / 阵容 / 历史成绩 / 数据 scripts/worldcup-team.js team.md
球员资料 / 动态 / 数据 / 赛程 scripts/worldcup-player.js player.md
排名 / 球队榜 / 球员榜 / FIFA排名 scripts/worldcup-rankings.js rankings.md
典型用户问题处理 workflows.md
跨脚本组合用法 usage.md

AI 必读workflows.md 包含 12 个真实工作流(用户问 X 时该怎么做)。

快速命令

球队(静态配置)

node scripts/worldcup-teams.js list              # 全部48队
node scripts/worldcup-teams.js group A           # A组
node scripts/worldcup-teams.js find 加拿大        # 按名查 teamId

赛程

node scripts/worldcup-schedule.js today          # 今日赛程
node scripts/worldcup-schedule.js date 2026-06-14
node scripts/worldcup-schedule.js group B        # B组赛程
node scripts/worldcup-schedule.js team 巴西      # 巴西的赛程

比赛详情(matchId 来自赛程)

node scripts/worldcup-match.js info \x3CmatchId>     # 基本信息
node scripts/worldcup-match.js analysis \x3CmatchId> # 情报/历史/预测
node scripts/worldcup-match.js lineup \x3CmatchId>   # 首发/替补
node scripts/worldcup-match.js live \x3CmatchId>     # 事件流/场地
node scripts/worldcup-match.js stats \x3CmatchId>    # 技术统计
node scripts/worldcup-match.js odds \x3CmatchId>     # 博彩赔率

球队详情(支持 teamId 或中文球队名)

node scripts/worldcup-team.js lookup 加拿大                            # 查 teamId
node scripts/worldcup-team.js info 巴西                                # 资料+荣誉(自动识别)
node scripts/worldcup-team.js schedule 巴西 世界杯                     # 该队赛程
node scripts/worldcup-team.js lineup 法国                              # 教练+球员
node scripts/worldcup-team.js history 加拿大                           # 历届世界杯
node scripts/worldcup-team.js stats 巴西 2026 小组赛                   # 数据统计

球员详情(playerId 来自球队阵容)

node scripts/worldcup-player.js info \x3CplayerId>          # 资料+能力雷达+荣誉+转会
node scripts/worldcup-player.js news \x3CplayerId>          # 球员新闻
node scripts/worldcup-player.js stats \x3CplayerId> 2026 世界杯
node scripts/worldcup-player.js schedule \x3CplayerId>      # 出场记录

排名数据

node scripts/worldcup-rankings.js standings              # 12组积分榜
node scripts/worldcup-rankings.js fifa 20               # FIFA 排名前20
node scripts/worldcup-rankings.js players 进球          # 射手榜
node scripts/worldcup-rankings.js players 助攻 10       # 助攻榜前10

加载策略

  1. 先看 workflows.md:了解用户问题 → 脚本调用的对应关系
  2. 简单查询:直接根据上表运行命令
  3. 字段说明:参考对应的 references/\x3Ctopic>.md
  4. 数据流/组合:参考 usage.md

注意事项

  • 数据从百度体育实时抓取,进行中比赛比分延迟约 1-2 分钟
  • 赛程页默认展示约 4 天窗口,更早赛程需按日期循环查询
  • 球队配置(teams.json)为静态,仅 2026 年赛事
  • 球队/球员名仅支持中文(如"巴西"),不支持英文
  • worldcup-team.js 支持中文球队名自动解析为 teamId(如 lineup 巴西 等同 lineup \x3Chash>
  • 共用查询模块:scripts/lib/teams.js 提供 loadTeams / findTeamByName / findTeamById / lookupTeam / resolveTeamId
  • 比赛时间均为北京时间(UTC+8)

作者

  • 爱海贼的无处不在
  • 微信公众号:无处不在的技术
Usage Guidance
Install only if you are comfortable with a skill that scrapes Baidu Sports and disguises requests with rotating real browser User-Agents. It does not appear to access private files, credentials, or persist in the environment, but the anti-bot evasion behavior may violate site expectations or terms and should be treated as a compliance and reliability risk.
Capability Assessment
Purpose & Capability
The artifacts coherently implement a 2026 FIFA World Cup data skill: Node scripts fetch public Baidu Sports schedules, teams, matches, players, and rankings, and the documentation routes user questions to those scripts.
Instruction Scope
Activation is broad but still centered on 2026 World Cup data; the Chinese-only team/player name limitation is disclosed, though fallback behavior is not well specified.
Install Mechanism
No install hooks, package-install commands, native binaries, or external dependencies were found; scripts use Node built-ins and static bundled JSON.
Credentials
Network access is limited to Baidu Sports endpoints and fits the stated scraping purpose, but the shared User-Agent module explicitly says it rotates real browser User-Agents to avoid anti-scraping detection, which is under-disclosed and creates compliance/abuse risk.
Persistence & Privilege
No credential access, local profile/session use, file writes, deletion, background workers, persistence, privilege escalation, or destructive behavior was found.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install haizei-worldcup-2026-skill
  3. After installation, invoke the skill by name or use /haizei-worldcup-2026-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
haizei-worldcup-2026-skill v1.0.0 - Initial release: Fetches comprehensive 2026 FIFA World Cup data from Baidu Sports. - Supports group info, match schedules, match details, team and player data, and rankings across all 48 teams. - Includes script-based commands for flexible data retrieval on teams, fixtures, game stats, lineups, and more. - Handles typical user queries via documented workflows. - All data focused on the 2026 North America World Cup; interface and queries use Chinese team/player names.
Metadata
Slug haizei-worldcup-2026-skill
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill)?

获取2026年国际足联世界杯(美加墨世界杯)数据技能。从百度体育抓取48支参赛球队的分组配置、赛程、比赛详情(分析/阵容/赛况/统计/指数)、球队详情(资料/阵容/历史成绩/数据)、球员详情(资料/动态/数据/赛程)、排名数据(积分榜/球员榜/FIFA排名)等。当用户需要查询2026世界杯球队、赛程、比赛数据、阵... It is an AI Agent Skill for Claude Code / OpenClaw, with 35 downloads so far.

How do I install Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill)?

Run "/install haizei-worldcup-2026-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) free?

Yes, Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) support?

Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill)?

It is built and maintained by 无处不在 (@wuchubuzai2018); the current version is v1.0.0.

💬 Comments