Releases: Nattothemoon/finetuning-cli-skill
v0.2.1 — ft playlist show
Adds ft playlist show (shipped in finetuning-cli v0.2.1) — view a playlist with its tracks, and pipe the track ids into bulk commands to act on a whole playlist at once.
v0.2.0 — playlists and bulk delete
Teaches the skill the new CLI commands shipped with finetuning-cli v0.2.0 (public API v1.2):
ft playlists— list playlistsft playlist add / remove / move— manage playlist tracks, by playlist name or idft delete— permanent bulk deletion, with the rule that--yesrequires the user's explicit confirmation
Also covers partial-success semantics (warnings vs exit code) and the playlist privacy rule.
Install: download finetuning-cli-skill.skill below, or git clone / pull the repo into ~/.claude/skills/finetuning-cli. Non-Claude agents: curl the updated AGENTS.md into your project root.
v0.1.1 — AGENTS.md for non-Claude-Code users
What's new
- AGENTS.md — cross-agent guide for Codex, Cursor, Aider, Cline, Windsurf, and any other AI coding agent that isn't Claude Code. Same content as SKILL.md, no Claude-specific frontmatter. Drop it into your project root and your agent picks it up automatically.
- README now documents how to update the skill after install (
git pullfor the cloned path, re-download for the.skillpath). - SKILL.md reflects CLI v0.1.1:
ft listshows full UUIDs, andft updateis the recommended way to upgrade the binary.
Install (Claude Code)
git clone https://github.com/Nattothemoon/finetuning-cli-skill.git ~/.claude/skills/finetuning-cliOr grab finetuning-cli-skill.skill (attached below) and install via Claude Code's skill manager.
Install (other agents)
curl -fsSL https://raw.githubusercontent.com/Nattothemoon/finetuning-cli-skill/main/AGENTS.md > AGENTS.mdUpgrading from v0.1.0
- Cloned install:
cd ~/.claude/skills/finetuning-cli && git pull .skillinstall: download the new file from this release page and re-install
v0.1.0 — initial release
First release of the finetuning-cli Claude Code skill.
What it does
Teaches Claude how to drive the ft CLI for finetuning.ai from a Claude Code session. Detects install + login state silently, then drives the generate / list / get / download / me happy paths. Handles common errors (401, 402, 403, 429, QUEUE_FULL).
Install
Option A — clone into your skills folder:
```bash
git clone https://github.com/Nattothemoon/finetuning-cli-skill.git ~/.claude/skills/finetuning-cli
```
Option B — download the packaged `.skill` file attached to this release and install via Claude Code's skill manager (or extract its contents into `~/.claude/skills/finetuning-cli/`).
Prerequisites
- Claude Code (CLI, desktop, or web)
- finetuning.ai Pro or Lifetime plan (public API is paid-only)
- The `ft` CLI installed (the skill will help install it if missing)
Benchmark
In skill-creator evals: 100% pass rate with the skill vs 79% without, ~38s faster, ~1.2k fewer tokens per task on average. The biggest delta was the "fresh Windows install" case, where the baseline (no skill) hallucinated that no CLI existed.