mediause/agent-skills/fifa2026/SKILL.md
fifa2026
Standardized fifa2026 skill for MediaUse. Includes Windows install, key onboarding, strict context/auth flow, full fifa2026 dynamic command map, and safe read-oriented execution controls.
- Source repository stars
- 9
- Declared platforms
- 0
- Static risk flags
- 2
- Last source update
- 2026-07-28
- Source checked
- 2026-07-28
Decision brief
What it does—and where it fits
Use this skill to run FIFA 2026 data discovery workflows in MediaUse, including player lookup, team lookup, group lookup, and detailed stats retrieval.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/mediause/agent-skills --skill "fifa2026"Inspect the Agent Skill "fifa2026" from https://github.com/mediause/agent-skills/blob/766e5075b28b3acd541436a7e3b3e21cdc38da01/fifa2026/SKILL.md at commit 766e5075b28b3acd541436a7e3b3e21cdc38da01. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
3.1 Discover and plugin setup
Review the “3.1 Discover and plugin setup” section in the pinned source before continuing.
Review and apply the “3.1 Discover and plugin setup” source section. - 02
6. Workflow Examples
Review the “6. Workflow Examples” section in the pinned source before continuing.
Review and apply the “6. Workflow Examples” source section. - 03
always run once before each workflow (auto-upgrade latest)
powershell -C "iwr https://release.mediause.dev/install.ps1 -UseBasicParsing | iex" mediause --version
powershell -C "iwr https://release.mediause.dev/install.ps1 -UseBasicParsing | iex" mediause --version - 04
Scope
Use this skill when the task targets fifa2026 operations such as:
Search player by nameSearch team by nameSearch group by letter/country (query optional) - 05
1. Install MediaUse CLI (Windows Only)
Use the official install script for Windows:
https://release.mediause.dev/install.ps1Before every run, execute the install script once to auto-install or auto-upgrade to the latest MediaUse CLI.Windows: supported
Permission review
Static risk signals and limitations
Runs scripts
The documentation asks the agent to run terminal commands or scripts.
Before every run, execute the install script once to auto-install or auto-upgrade to the latest MediaUse CLI.Network access
The documentation includes network, browsing, or remote request actions.
powershell -C "iwr https://release.mediause.dev/install.ps1 -UseBasicParsing | iex"Runs scripts
The documentation asks the agent to run terminal commands or scripts.
Run install script once to ensure latest CLI.Network access
The documentation includes network, browsing, or remote request actions.
`mediause fifa2026 search team --name <text> [--url <url>] [--limit <n>] --json`Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 75/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 9 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- mediause/agent-skills
- Skill path
- fifa2026/SKILL.md
- Commit
- 766e5075b28b3acd541436a7e3b3e21cdc38da01
- License
- Not declared
- Collected
- 2026-07-28
- Default branch
- master
View the original SKILL.md
MediaUse FIFA 2026 Skill
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 (
queryoptional) - 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:
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 <your_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 healthwhen needed. - Execute dynamic site actions.
- Verify with trace/task.
3.1 Discover and plugin setup
mediause plugin list --json
mediause plugin add fifa2026 --json
mediause fifa2026 -h
mediause fifa2026 search -h
mediause fifa2026 get -h
mediause fifa2026 compare -h
mediause fifa2026 predict -h
3.2 Bind context before commands
use account must be executed successfully before search/get actions.
use account argument format:
<platform:account_id>account_idcan be selected frommediause auth list --json.
mediause auth list --json
mediause use account fifa2026:guest --json
If you need to watch page behavior (for challenge/manual checks):
mediause use account fifa2026:guest --show --json
Risk reduction note:
- For site-backed actions (
search/get/compare/predict), prefer binding with--show. - A visible session usually lowers Cloudflare/challenge interception risk versus fully hidden runs.
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
mediause use account fifa2026:<account_id> --json
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 <text> [--limit <n>] --jsonmediause fifa2026 search team --name <text> [--url <url>] [--limit <n>] --jsonmediause fifa2026 search group [--query <text>] [--url <url>] [--limit <n>] --json
search group query behavior:
- No
query: return all groups. - Letter query: supports values like
a,b,c, ora,b,c. - Country query: supports values like
brazil, and returns matched group.
4.2 get.*
mediause fifa2026 get player --url <url> --jsonmediause fifa2026 get team --url <url> [--player-limit <n>] --jsonmediause fifa2026 get player-stats --url <url> [--limit <n>] --jsonmediause fifa2026 get team-stats --url <url> [--limit <n>] --json
4.3 compare.*
mediause fifa2026 compare teams --team_a_url <url> --team_b_url <url> [--competition_url <url>] [--recent_limit <n>] [--player_limit <n>] --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, default10.player_limit: optional top player comparison depth, default5.
4.4 predict.*
mediause fifa2026 predict match --home_url <url> --away_url <url> [--competition_url <url>] [--recent_limit <n>] [--player_limit <n>] [--neutral_site <true|false>] --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, default10.player_limit: optional squad strength feature depth, default5.neutral_site: optional venue flag, defaulttrue.
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: <= 60 per minute
Minimum spacing:
- Search/get actions: >= 1 second between actions
Same-target guardrails:
- Repeated request to same URL/query: >= 2 seconds
If a limit is hit or challenge repeats:
- Pause at least 5 minutes.
- Rebind context with
use account --show. - Resume with lower frequency.
5.3 Safety policy
- Do not bypass platform protections.
- Do not attempt credential/session hijacking.
- Respect platform terms and local regulations.
5.4 Output and error handling
- Prefer
--jsonoutput. - Require structured error handling.
- On blocked/risk/challenge, stop and return actionable next steps.
6. Workflow Examples
6.1 Group overview (all groups)
mediause use account fifa2026:guest --show --json
mediause fifa2026 search group --json
mediause trace last --json
6.2 Group lookup by letters
mediause use account fifa2026:guest --show --json
mediause fifa2026 search group --query "a,b,c" --json
mediause trace last --json
6.3 Group lookup by country
mediause use account fifa2026:guest --show --json
mediause fifa2026 search group --query "brazil" --json
mediause trace last --json
6.4 Player to stats drill-down
mediause use account fifa2026:guest --show --json
mediause fifa2026 search player --name "marta" --limit 5 --json
mediause fifa2026 get player --url <player_url> --json
mediause fifa2026 get player-stats --url <player_url> --limit 5 --json
mediause trace last --json
6.5 Team comparison
mediause use account fifa2026:guest --show --json
mediause fifa2026 compare teams --team_a_url <team_a_url> --team_b_url <team_b_url> --json
mediause trace last --json
6.6 Match prediction
mediause use account fifa2026:guest --show --json
mediause fifa2026 predict match --home_url <home_team_url> --away_url <away_team_url> --neutral_site true --json
mediause trace last --json
7. Execution Checklist
Before run:
- Run
https://release.mediause.dev/install.ps1once to auto-install/upgrade latest CLI. - PATH updated and
mediause --versionworks. - API key configured and verified.
- Account context bound via
mediause use account <platform:account_id> --show(recommended for lower interception risk). - If using non-guest account,
mediause auth health --jsonchecked.
During run:
- Respect spacing and retry limits.
- Stop on repeated challenge pages.
- Avoid repeated burst requests to same target.
After run:
- Save logs and outcomes.
- Record challenge/risk events and cooldowns.
- Keep activity under conservative limits.
8. Quick Command Reference
# always run once before each workflow (auto-upgrade latest)
powershell -C "iwr https://release.mediause.dev/install.ps1 -UseBasicParsing | iex"
mediause --version
# discover
mediause plugin list --json
mediause plugin add fifa2026 --json
mediause fifa2026 -h
mediause fifa2026 search -h
mediause fifa2026 get -h
mediause fifa2026 compare -h
mediause fifa2026 predict -h
# context + status
mediause auth list --json
mediause use account fifa2026 --show --json
mediause use account fifa2026:guest --show --json
mediause auth health --json
# key workflows
mediause fifa2026 search group --json
mediause fifa2026 search group --query "a,b,c" --json
mediause fifa2026 search group --query "brazil" --json
mediause fifa2026 search team --name "brazil" --json
mediause fifa2026 get team --url <team_url> --json
mediause fifa2026 get team-stats --url <team_url> --json
mediause fifa2026 compare teams --team_a_url <team_a_url> --team_b_url <team_b_url> --json
mediause fifa2026 predict match --home_url <home_team_url> --away_url <away_team_url> --json
# trace
mediause trace last --json
Skill Metadata Maintainer: @mediause-demo Last-Updated: 2026-05-26 Version: v1
Alternatives
Compare before choosing
event4u-app/agent-config
design-review
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.
K-Dense-AI/scientific-agent-skills
dask
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.
K-Dense-AI/scientific-agent-skills
medchem
Medicinal chemistry filters for compound triage. Apply drug-likeness rules (Lipinski, Veber, CNS), structural alert catalogs (PAINS, NIBR, ChEMBL), complexity metrics, and the medchem query language for library filtering.
K-Dense-AI/scientific-agent-skills
neurokit2
Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.