bxc-fut

bxc-fut is a skill for Claude Code from aphrody-code/bxc. It costs 74 tokens per session (703 once invoked), scanned A, original, Apache-2.0.

A scraper for EA Sports FC Ultimate Team data from Futbin and FUT.GG. It retrieves player prices and profiles, validates the results, stores extracted data in SQLite, and exposes selected queries through GraphQL.

In plain words
What is it for?
Use it to fetch a player's current price or profile, query player and summary data through GraphQL, and check whether the extracted database exists.
Why use it?
It turns data from two game websites into checked, queryable records instead of requiring each caller to parse pages independently. The supplied database is a generated crawl artifact, not a file included in a fresh checkout.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the bxc plugin — 22 skills, 3 commands shipped together

Good fit Use it to fetch a player's current price or profile, query player and summary data through GraphQL, and check whether the extracted database exists.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aphrody-code/bxc/bxc-fut
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aphrody-code/bxc --skill bxc-fut
Clone the repo
git clone --depth 1 https://github.com/aphrody-code/bxc

Made for: Claude Code.

Or install bxc, the plugin that ships this one along with the rest of its 22 skills, 3 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bxc-fut

README.md
[![agentmods](https://agentmods.dev/badge/skills/aphrody-code/bxc/bxc-fut/github.svg)](https://agentmods.dev/skills/aphrody-code/bxc/bxc-fut)
Your own site
<a href="https://agentmods.dev/skills/aphrody-code/bxc/bxc-fut"><img src="https://agentmods.dev/badge/skills/aphrody-code/bxc/bxc-fut/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bxc-fut

Your own site · 80×15
<a href="https://agentmods.dev/skills/aphrody-code/bxc/bxc-fut"><img src="https://agentmods.dev/badge/skills/aphrody-code/bxc/bxc-fut.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 703 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.00703
Opus 5 $0.00037 $0.00351
Sonnet 5 $0.00015 $0.00141
Haiku 4.5 $0.00007 $0.00070

Measured 5d ago against content hash ea338f2e491e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

bxc-fut scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/bxc/skills/bxc-fut/SKILL.md · 51 lines

How it starts

The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.

@aphrody/fut

Scraper Ultimate Team (packages/fut), publié comme @aphrody/fut.

Surface

Symbole Fichier Rôle
scrapeFutBinPrice src/futbin.ts Prix courant d'un joueur sur futbin.com
scrapeFutGgPlayer src/futgg.ts Fiche joueur complète sur fut.gg
FutPlayerSchema, FutPriceSchema src/types.ts Validation Zod des deux formes
FutResolver src/graphql/FutResolver.ts Requêtes futPlayers / futStatsSummary (type-graphql)
futDatabaseExists src/graphql/FutResolver.ts Dit si l'artefact de crawl est présent

CLI : bxc fut price <joueur> et bxc fut player <joueur> (src/cli/fut.ts), avec --profile static|fast|http|stealth|max.

La base est un artefact, pas une fixture

packages/fut/src/data/fut_extracted_database.sqlite est git-ignoré : il n'existe pas sur un clone frais. Il se produit avec bun packages/fut/src/scripts/recursive_fut_scraper.ts.

Le resolver l'ouvre en lecture seule et sans création (openFutDatabase) : un new Database(path) nu la créerait vide, et les requêtes échoueraient plus tard sur « no such table: players » — un message qui accuse le schéma alors que le vrai défaut est l'absence de données. Les tests GraphQL se sautent d'eux-mêmes via describe.skipIf(!futDatabaseExists()). Ne pas « réparer » ce skip en commitant une base : elle pèse et se périme à chaque patch du jeu.

Les connexions se prennent avec using db = openFutDatabase()using ferme sur tous les chemins de sortie, y compris les throw de GraphQL.

Tests

packages/fut/src/test/ : api, futbin, futgg, ea-ut tapent le vrai site et sont gardés par SKIP_NETWORK_TESTS (posée par défaut dans bun run test). Pour les exercer réellement : bun run test:live, en sachant qu'ils lancent un navigateur. Leurs imports vers le cœur remontent quatre niveaux (../../../../src/api/browser.ts) — trois est l'erreur classique.

Voir aussi : la skill bxc-scraper pour les conventions communes, bxc-new-scraper pour en créer un nouveau.

Read the full file on GitHub · 51 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 51 lines · 74 tokens per session scan A ea338f2e491e

Subscribe to this mod's changes

bxc-fut is a skill published in the GitHub repository aphrody-code/bxc (3 stars, last pushed 4d ago), licensed Apache-2.0. It adds 74 tokens to every session and 703 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

using-claude-cli

How to drive claude (Claude Code) as a non-interactive CLI tool — headless runs, MCP servers, permissions, output formats, and piping. Use when scripting Claude, spawning a sub-agent from another process, or wiring Claude into CI/automation.

developerz-ai/ui-debugger-mcp · 61 tokens

pinchtab

Use this skill when a task needs browser automation through PinchTab: open a website, inspect interactive elements, click through flows, fill out forms, scrape page text, reuse a dedicated automation profile with user approval, export screenshots or PDFs, manage multiple browser instances, or fall back to the HTTP API…

pinchtab/pinchtab · 94 tokens

pinchtab-mcp

Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.

pinchtab/pinchtab · 52 tokens

pinchtab-dev

Develop and contribute to the PinchTab project. Use when working on PinchTab source code, adding features, fixing bugs, running tests, or preparing PRs. Triggers on "work on pinchtab", "pinchtab development", "contribute to pinchtab", "fix pinchtab bug", "add pinchtab feature".

pinchtab/pinchtab · 77 tokens

benchling-integration

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

synthetic-sciences/openscience · 44 tokens

browser_harness

../../SKILL.md.

browser-use/browser-harness · 0 tokens