🌍 Pick a region when creating buckets and repos
create_bucket and create_repo now accept an optional region argument ("us" or "eu") so you can pin a new bucket or repo to a specific cloud region at creation time. The same option is exposed on the CLI via a --region flag on hf buckets create and hf repos create.
>>> from huggingface_hub import create_bucket, create_repo
>>> create_bucket("my-bucket", region="us")
>>> create_repo("my-model", region="eu")$ hf buckets create my-bucket --region us
$ hf repos create username/my-model --region eu🧩 Discover marketplace skills with hf skills list
A new hf skills list (alias ls) command lists every skill available in the Hugging Face marketplace and shows whether each one is already installed in the four supported locations (project, global, project Claude, global Claude). Handy when you want to check what's installable and what you've already got before running hf skills add.
$ hf skills ls
NAME DESCRIPTION PROJECT PROJECT (CLAUDE) GLOBAL GLOBAL (CLAUDE)
--------------------------- ----------------------------------- ------- ---------------- ------ ---------------
hf-cli Execute Hugging Face Hub operati... yes yes yes yes 🎨 Polished --help output with ANSI styling
hf --help and every subcommand now render with underlined section headings and bold option/command names, making the help screens much easier to scan in a terminal. The new styling is automatically disabled when NO_COLOR is set or when the CLI detects it's running under an AI agent, so script and agent output stays clean.
🖥️ CLI
- [CLI] Check Homebrew registry for updates when installed via brew by @Wauplin in #4204 —
hf updateno longer suggests a version that isn't onbrewyet for Homebrew installs. - [CLI] No traceback on LocalEntryNotFoundError by @Wauplin in #4190 — offline/cache-miss errors now print a clean message instead of a Python traceback (set
HF_DEBUG=1for the full stack).
🐛 Bug and typo fixes
- Make HF_HUB_ENABLE_HF_TRANSFER deprecation warning visible to users by @Adithya191101 in #4220
- Fix hint message to use 'hf skills update' by @Pierrci in #4206
📖 Documentation
- [docs] Drop duplicated Key Features list from hf jobs CLI section by @davanstrien in #4222
🏗️ Internal
- [CI] Harden style-bot workflow against TOCTOU by @paulinebm in #4183
- Only sync skill if SKILL.md has changed by @evalstate in #4210