From thinking-frameworks-skills
Reads and updates the FIFA World Cup Fantasy tournament state machine: phase, budget, nation cap, chips, player elimination risk. Validates on load, applies phase transitions, append-only logging.
How this skill is triggered — by the user, by Claude, or both
Slash command
/thinking-frameworks-skills:wc-tournament-stateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Owns `footballfantasy/context/tournament-state.md`. The World Cup is a month-long state machine and tracking it correctly is a core deliverable — budget rises at the knockouts, the nation cap loosens as teams are eliminated, five chips burn down once each, and every owned player has an elimination horizon that caps his value. This skill is the single writer of that file (everyone else reads it).
Owns footballfantasy/context/tournament-state.md. The World Cup is a month-long state machine and tracking it correctly is a core deliverable — budget rises at the knockouts, the nation cap loosens as teams are eliminated, five chips burn down once each, and every owned player has an elimination horizon that caps his value. This skill is the single writer of that file (everyone else reads it).
tournament-state.md. Parse: current phase, round id, next deadline, budget, squad value, in-the-bank, nation cap, free transfers, chips remaining, surviving nations, owned-player exposure.tracker/chip-ledger.md.p_advance; re-flag exposure for owned players whose nations are now out (these are forced-transfer candidates).YYYY-MM-DD HH:MMZ — phase — what changed — why. Never overwrite log history — it's how we reconstruct what was true at each decision.tracker/chip-ledger.md and squad changes to context/squad.md.For every owned player, maintain elimination_risk_round = the earliest round his nation could be knocked out (from fixtures/progression-odds.md). This is the horizon on that asset's value and the transfer-strategist's primary watch list. When a nation is eliminated, immediately flag its players as dead — transfer out next window and surface them to the Director.
- [ ] LOAD: parse → validate → return state + flags
- [ ] UPDATE: apply change → run transition rules if phase changed → rewrite fields →
append state-log line → mirror to chip-ledger / squad.md
tournament-state.md. Prevents drift.league-config.md).npx claudepluginhub lyndonkl/claude --plugin thinking-frameworks-skillsPlans between-round FIFA World Cup Fantasy transfers by budgeting free transfers, forcing out eliminated players, chasing fixture swings, upgrading on value, and deciding when to use the Wildcard. Ranks in/out pairs by EV gain over survival horizon minus transfer cost.
Builds a tactical game plan by analyzing opponent weaknesses, team strengths, and match context using performance indicators and decision rules.
Routes football analytics requests to specialised sub-skills for data acquisition, wrangling, computation, analysis, visualisation, and learning. Handles setup and profile management.