Install This Skill<br>npx skills add mediause/agent-skills/fifa2026Copy
This skill is synced from github.com/mediause/agent-skills and automatically maps to the matching site plugin data by plugin name. You only need to follow the CLI steps in the skill guide.<br>skill.md<br>fifa2026<br>Use this skill to run FIFA 2026 data discovery workflows in MediaUse, including player lookup, team lookup, group lookup, and detailed stats retrieval.
Use this skill to run FIFA 2026 data discovery workflows in MediaUse, including player lookup, team lookup, group lookup, and detailed stats retrieval.
Scope
Use this skill when the task targets fifa2026 operations such as:
Search player by name
Search team by name
Search group by letter/country (query optional)
Get player details
Get team details and roster preview
Get player recent match stats
Get team recent match stats
Compare two teams by ranking, form, and key players
Predict a match with structured probability output
1. Install MediaUse CLI (Windows Only)
Use the official install script for Windows:
https://release.mediause.dev/install.ps1
Mandatory update rule:
Before every run, execute the install script once to auto-install or auto-upgrade to the latest MediaUse CLI.
Run:
powershell -C "iwr https://release.mediause.dev/install.ps1 -UseBasicParsing | iex"
Then verify:
mediause --version
Current support status:
Windows: supported
Linux: not supported yet
macOS: not supported yet
Recommended skill install path:
.mediause/skills/fifa2026/SKILL.md
2. Get and Configure MediaUse Key
2.1 Apply for key
Open https://mediause.dev/
Sign in to your account.
Open Project.
Create or copy your API key.
2.2 Configure key in CLI
mediause manage key --json
3. Core Flow (Mandatory Order)
Always follow this order:
Run install script once to ensure latest CLI.
Discover site and commands.
Bind account context with use account.
Check status with auth health when needed.
Execute dynamic site actions.
Verify with trace/task.
3.1 Discover and plugin setup
mediause plugin list --json<br>mediause plugin add fifa2026 --json<br>mediause fifa2026 -h<br>mediause fifa2026 search -h<br>mediause fifa2026 get -h<br>mediause fifa2026 compare -h<br>mediause fifa2026 predict -h
3.2 Bind context before commands
use account must be executed successfully before search/get actions.
use account argument format:
account_id can be selected from mediause auth list --json.
mediause auth list --json<br>mediause use account fifa2026:guest --json
If you need to watch page behavior (for challenge/manual checks):
mediause use account fifa2026:guest --show --json
3.3 Auth health precondition
For fifa2026 read workflows, guest is typically sufficient. If a non-guest account is used, check:
mediause auth health --json
If health indicates login expired:
mediause auth login fifa2026 --json<br>mediause use account fifa2026: --json<br>mediause auth health --json
4. FIFA 2026 Dynamic Command Map (v1)
Source schema:
plugin: plugin.fifa2026
manifest: crates/platforms/plugins/fifa2026/manifest.yaml
4.1 search.*
mediause fifa2026 search player --name [--limit ] --json
mediause fifa2026 search team --name [--url ] [--limit ] --json
mediause fifa2026 search group [--query ] [--url ] [--limit ] --json
search group query behavior:
No query: return all groups.
Letter query: supports values like a, b, c, or a,b,c.
Country query: supports values like brazil, and returns matched group.
4.2 get.*
mediause fifa2026 get player --url --json
mediause fifa2026 get team --url [--player-limit ] --json
mediause fifa2026 get player-stats --url [--limit ] --json
mediause fifa2026 get team-stats --url [--limit ] --json
4.3 compare.*
mediause fifa2026 compare teams --team_a_url --team_b_url [--competition_url ] [--recent_limit ] [--player_limit ] --json
compare teams parameter notes:
team_a_url, team_b_url: required squad URLs.
competition_url: optional competition context, defaults to World Cup stats page.
recent_limit: optional recent match window, default 10.
player_limit: optional top player comparison depth, default 5.
4.4 predict.*
mediause fifa2026 predict match --home_url --away_url [--competition_url ] [--recent_limit ] [--player_limit ] [--neutral_site ] --json
predict match parameter notes:
home_url, away_url: required squad URLs.
competition_url: optional ranking/group context URL.
recent_limit: optional form window size, default 10.
player_limit: optional squad strength feature depth, default 5.
neutral_site: optional venue flag, default true.
5. Operational Constraints (Mandatory)
Apply these constraints for stable and safe execution.
5.1 Read-oriented pacing
Avoid burst loops on repeated navigation.
Add short delay between repeated fetches.
Stop and retry later if anti-bot/challenge appears.
5.2 Suggested limits and spacing
Suggested limits:
Search/get actions:<br>Minimum spacing:
Search/get actions: >= 1 second between actions
Same-target guardrails:
Repeated request to same...