
Huggingface Hub
- 244 installs
- 226k repo stars
- Updated August 5, 2026
- nousresearch/hermes-agent
Search, download, upload, and version models, datasets, and Spaces on Hugging Face Hub when prototyping or deploying ML and LLM features in agent pipelines.
About
Hugging Face Hub skill connects Hermes agents to the open ML ecosystem during build. It automates discovery, download, upload, and versioning of models, datasets, and Spaces so LLM and ML features integrate Hub assets with correct tokens, revisions, and documentation.
- Queries models, datasets, and Spaces on the Hub
- Downloads revisions with correct auth and caching
- Uploads artifacts with metadata and model cards
- Compares checkpoints and dependency requirements
- Supports inference and fine-tune prep workflows
Huggingface Hub by the numbers
- 244 all-time installs (skills.sh)
- +11 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #617 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nousresearch/hermes-agent --skill huggingface-hubAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 244 |
|---|---|
| repo stars | ★ 226k |
| Last updated | August 5, 2026 |
| Repository | nousresearch/hermes-agent ↗ |
What it does
Search, download, upload, and version models, datasets, and Spaces on Hugging Face Hub when prototyping or deploying ML and LLM features in agent pipelines.
Files
Hugging Face CLI (hf) Reference Guide
The hf command is the modern command-line interface for interacting with the Hugging Face Hub, providing tools to manage repositories, models, datasets, and Spaces.
IMPORTANT: Thehfcommand replaces the now deprecatedhuggingface-clicommand.
Quick Start
- Installation:
curl -LsSf https://hf.co/cli/install.sh | bash -s - Help: Use
hf --helpto view all available functions and real-world examples. - Authentication: Recommended via
HF_TOKENenvironment variable or the--tokenflag.
---
Core Commands
General Operations
-
hf download REPO_ID: Download files from the Hub. -
hf upload REPO_ID: Upload files/folders (recommended for single-commit). -
hf upload-large-folder REPO_ID LOCAL_PATH: Recommended for resumable uploads of large directories. -
hf sync: Sync files between a local directory and a bucket. -
hf env/hf version: View environment and version details.
Authentication (hf auth)
-
login/logout: Manage sessions using tokens from huggingface.co/settings/tokens. -
list/switch: Manage and toggle between multiple stored access tokens. -
whoami: Identify the currently logged-in account.
Repository Management (hf repos)
-
create/delete: Create or permanently remove repositories. -
duplicate: Clone a model, dataset, or Space to a new ID. -
move: Transfer a repository between namespaces. -
branch/tag: Manage Git-like references. -
delete-files: Remove specific files using patterns.
---
Specialized Hub Interactions
Datasets & Models
- Datasets:
hf datasets list,info, andparquet(list parquet URLs). - SQL Queries:
hf datasets sql SQL— Execute raw SQL via DuckDB against dataset parquet URLs. - Models:
hf models listandinfo. - Papers:
hf papers list— View daily papers.
Discussions & Pull Requests (hf discussions)
- Manage the lifecycle of Hub contributions:
list,create,info,comment,close,reopen, andrename. -
diff: View changes in a PR. -
merge: Finalize pull requests.
Infrastructure & Compute
- Endpoints: Deploy and manage Inference Endpoints (
deploy,pause,resume,scale-to-zero,catalog). - Jobs: Run compute tasks on HF infrastructure. Includes
hf jobs uvfor running Python scripts with inline dependencies andstatsfor resource monitoring. - Spaces: Manage interactive apps. Includes
dev-modeandhot-reloadfor Python files without full restarts.
Storage & Automation
- Buckets: Full S3-like bucket management (
create,cp,mv,rm,sync). - Cache: Manage local storage with
list,prune(remove detached revisions), andverify(checksum checks). - Webhooks: Automate workflows by managing Hub webhooks (
create,watch,enable/disable). - Collections: Organize Hub items into collections (
add-item,update,list).
---
Advanced Usage & Tips
Global Flags
-
--format json: Produces machine-readable output for automation. -
-q/--quiet: Limits output to IDs only.
Extensions & Skills
- Extensions: Extend CLI functionality via GitHub repositories using
hf extensions install REPO_ID. - Skills: Manage AI assistant skills with
hf skills add.