fetch-dataset-from-huggingface

Fetch HuggingFace Hub datasets into a Pixie tool's data folder.

6|1|Updated May 17, 2026
One-click install
npx skills add https://github.com/AlexKapadia/Pixie --skill fetch-dataset-from-huggingface
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fetch-dataset-from-huggingface
Source: https://github.com/AlexKapadia/Pixie/tree/main/.claude/skills/fetch-dataset-from-huggingface
Command: npx skills add https://github.com/AlexKapadia/Pixie --skill fetch-dataset-from-huggingface

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

In Pixie, ingesting HuggingFace Hub datasets into a tool's workspace was manual and error-prone. This skill automates downloading public and token-gated datasets directly into the specific tool's data folder, enabling reproducible experiments and streamlined workflows.

Core Features & Use Cases

  • Supports public datasets and gated datasets using HF_TOKEN with zero code changes.
  • Downloads datasets into the tool's local workspace under tools/<tool_id>/data/datasets/<dataset_id>/files for reusability.
  • Validates target tool existence, updates dependencies as needed, and emits a manifest with dataset metadata for traceability.

Quick Start

Name a HuggingFace dataset (namespace/name) and it will be downloaded into the tool's data/datasets path.

Frequently Asked Questions about fetch-dataset-from-huggingface

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I download HuggingFace datasets into a local tool workspace?

To download HuggingFace datasets into a local tool workspace, specify the dataset by its namespace and name. The skill automatically fetches it and stores the files under the tool's data/datasets path for reusability.

Can I access gated HuggingFace datasets using a token?

Yes, you can access gated HuggingFace datasets by providing your HF_TOKEN. The skill handles token authentication automatically, allowing you to download restricted data with zero code changes.

Does fetching HuggingFace datasets validate the target tool and update dependencies?

Yes, fetching HuggingFace datasets validates the target tool's existence before downloading. It also updates dependencies as needed and emits a manifest with dataset metadata to ensure reproducible workflows.

What is the best way to automate HuggingFace data ingestion for reproducible experiments?

Automating HuggingFace data ingestion is best handled by fetching datasets directly into a tool's data folder and generating a metadata manifest. This approach eliminates manual downloads and ensures reproducible experiments.

Where are HuggingFace dataset files stored after downloading them into a tool?

HuggingFace dataset files are stored locally under the specific tool's workspace at tools/<tool_id>/data/datasets/<dataset_id>/files, keeping the ingested data organized and accessible for downstream tasks.