← 返回 Skills 市场
35
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install haizei-worldcup-2026-skill
功能描述
获取2026年国际足联世界杯(美加墨世界杯)数据技能。从百度体育抓取48支参赛球队的分组配置、赛程、比赛详情(分析/阵容/赛况/统计/指数)、球队详情(资料/阵容/历史成绩/数据)、球员详情(资料/动态/数据/赛程)、排名数据(积分榜/球员榜/FIFA排名)等。当用户需要查询2026世界杯球队、赛程、比赛数据、阵...
使用说明 (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
加载策略
- 先看 workflows.md:了解用户问题 → 脚本调用的对应关系
- 简单查询:直接根据上表运行命令
- 字段说明:参考对应的
references/\x3Ctopic>.md - 数据流/组合:参考 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)
作者
- 爱海贼的无处不在
- 微信公众号:无处不在的技术
安全使用建议
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install haizei-worldcup-2026-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/haizei-worldcup-2026-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) 是什么?
获取2026年国际足联世界杯(美加墨世界杯)数据技能。从百度体育抓取48支参赛球队的分组配置、赛程、比赛详情(分析/阵容/赛况/统计/指数)、球队详情(资料/阵容/历史成绩/数据)、球员详情(资料/动态/数据/赛程)、排名数据(积分榜/球员榜/FIFA排名)等。当用户需要查询2026世界杯球队、赛程、比赛数据、阵... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 35 次。
如何安装 Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill)?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install haizei-worldcup-2026-skill」即可一键安装,无需额外配置。
Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) 是免费的吗?
是的,Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) 支持哪些平台?
Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Haizei Worldcup 2026 Skill (2026年美加墨足球世界杯Skill)?
由 无处不在(@wuchubuzai2018)开发并维护,当前版本 v1.0.0。
推荐 Skills