Skills

Point an agent at your league.

Skills are workflows built on the API, not new server capability. Each one composes a few reads and writes into something you'd actually ask for: find undervalued trades, fill a standing offer, set the highest-projected lineup before lock. Run them from Claude, Codex, or your own script.

01read

Find undervalued trade targets

Surface players the market is quietly mispricing, before your league mates notice.

How it works

  1. 1GET /free-agents pull the available pool, ranked by KTC value
  2. 2GET /trade-triggers read every standing offer live in the league
  3. 3compose flag anyone a rival already values above the going rate

Example

Jaylen Warren is buried at RB38 on waivers, but an active trigger is offering a 2026 3rd for him. That gap is yours to flip.

02write:trade_trigger

Fill a standing offer the moment it clears

Name your price for a player once, then let the trade execute itself the instant terms are met.

How it works

  1. 1POST /trade-triggers post your terms: a pick floor, value bundle, or position-rank threshold
  2. 2POST /trade-triggers/{id}/offers auto-submit the matching offer the second a roster crosses the line

Example

Want Xavier Worthy for any 2026 2nd-or-better? Arm the trigger and walk away. It fills the moment someone's willing.

Fills the trade immediately and irreversibly the moment terms are met.

03write:lineup

Set the highest-projected lineup before lock

Never leave points on your bench. Auto-optimize your starters right up until kickoff.

How it works

  1. 1GET /roster read your starters and bench, each with projections
  2. 2GET /matchup pull the week's projected totals and your opponent
  3. 3PATCH /lineup swap in any bench player out-projecting a starter at the same slot

Example

Your FLEX projects 9.4; a bench WR just jumped to 14.1 on a beat-writer report. The swap lands before lock, without you watching.

04write:draft

Draft on the clock, automatically

Hand the draft to an agent that takes the best available the instant it's your turn.

How it works

  1. 1GET /drafts/{id} poll draft state until turn flips to active
  2. 2POST /drafts/{id}/picks submit the top player left on your board, atomically

Example

On the clock at 3am? The agent watches the board and takes your #1 remaining before the timer autopicks a kicker.

05intelligence:read

Weekly payout digest

One formatted recap every week: what you're on pace to cash, and what moved in your league.

How it works

  1. 1GET /money-outlook simulated payout odds and expected winnings
  2. 2GET /market-pulse the week's biggest roster-value movers
  3. 3compose format the digest and drop it in the group chat

Example

“You're 2nd in the money race, +$36 this week. Nabers is up 8%, Swift cratered.” Auto-posted every Tuesday.

Every skill is made of documented endpoints. See the full surface on the API reference.