Install
openclaw skills install @dongbinnie/fpl-assistantFantasy Premier League (FPL) assistant for squad management, transfer planning, captain selection, and chip strategy. Use when users ask about FPL lineup decisions, transfer suggestions, captain picks, gameweek analysis, FPL rules, or anything related to Fantasy Premier League. Triggers on "FPL", "fantasy premier league", "fantasy", "GW" (gameweek), "captain", "transfer", "chip", "wildcard", "free hit", "bench boost", "triple captain".
openclaw skills install @dongbinnie/fpl-assistantAssist with Fantasy Premier League decisions: squad analysis, transfers, captaincy, chip timing, and gameweek planning. Combine FPL API data with multi-dimensional analysis (not just FDR).
Before making recommendations, collect:
Use curl against the public FPL API. No auth needed.
# Bootstrap data (teams, players, events)
curl -s 'https://fantasy.premierleague.com/api/bootstrap-static/'
# GW fixtures with difficulty ratings
curl -s 'https://fantasy.premierleague.com/api/fixtures/?event={gw}'
# Player detail (history, fixtures)
curl -s 'https://fantasy.premierleague.com/api/element-summary/{player_id}/'
# Manager team
curl -s 'https://fantasy.premierleague.com/api/entry/{manager_id}/event/{gw}/picks/'
See references/api.md for full API reference.
Do NOT rely solely on FDR (Fixture Difficulty Rating). FDR is a season-long aggregate and misses short-term dynamics. Layer these factors:
| Factor | What to Check | Source |
|---|---|---|
| Recent form | Last 4-6 GW results, player form rating | FPL API form field, recent results |
| League position & motivation | Top 4/6 (European race), bottom 3 (relegation), mid-table dead rubber | League table |
| Fixture congestion | Midweek European/FA Cup matches, travel load | Schedule check |
| Head-to-head | Recent meetings between the two teams | Historical data |
| Home/away split | Some teams significantly better at home | Season stats |
| Injury/rotation risk | Flagged players, midweek match recovery | FPL API status, news |
| Expected stats | xG, xA, shots, key passes vs actual returns | Advanced stats sites |
Priority factors:
Provide recommendations as:
references/rules.md — Full FPL scoring rules and squad constraintsreferences/api.md — FPL API endpoints and data structuresreferences/strategy.md — Advanced selection methodology