Data & Analysis hugging-facedataset-viewerdataset-apiparquetpaginationtext-searchdata-statistics

Hugging Face Dataset Explorer

Explore, query, and extract Hugging Face datasets through the Dataset Viewer API.

FollowSkills review · FSRS-2.0
Not recommended
49/ 100 5-point scale 2.5 / 5
Trust14 / 25 · 2.8/5

The evidence makes the core Dataset Viewer workflow read-only and advises using a Bearer token for gated/private datasets; defaulting trace uploads to private reduces exposure risk. However, the skill also includes dataset creation, uploads, and agent-trace uploads without per-operation confirmation, least-privilege token guidance, rollback, or pre-upload secret/PII scanning and redaction, so points are deducted.

Reliability8 / 20 · 2.0/5

The core endpoints, pagination parameters, and examples are reasonably consistent, and the document explains using total/page/partial fields for continuation. It lacks endpoint compatibility details, error-response handling, retry/rate-limit guidance, input validation, and skill-specific tests. Static evidence cannot exceed the 10-point cap, so points are deducted.

Adaptability8 / 15 · 2.7/5

The skill clearly covers Dataset Viewer metadata, pagination, search, filtering, parquet, and statistics use cases. Trigger conditions, input/output boundaries, failure and non-fit cases are under-specified, and there is no evidence about Chinese-language support or mainland-China reachability. Upload guidance also mixes scope with the read-only workflow, so points are deducted.

Convention8 / 15 · 2.7/5

The document has frontmatter, a staged workflow, defaults, endpoint examples, and some security guidance; repository evidence includes an Apache-2.0 license, CI generation checks, and a security reporting channel. The skill itself lacks versioning, changelog, maintenance ownership, update path, FAQs, and systematic limitation notes, while its external hf-cli dependency is not clearly documented as an installation prerequisite.

Effectiveness7 / 15 · 2.3/5

For common Dataset Viewer reading, pagination, search, and statistics tasks, the skill provides directly reusable curl templates and a clear core benefit. Representative results were not verified, API behavior and field assumptions still require user review, and the upload flow depends on other tooling. Static calibration caps this at 7, so full marks are not justified.

Verifiability4 / 10 · 2.0/5

Evidence consists of the revision-pinned skill text plus repository CI, security-policy, and license material. The CI checks generated artifacts and version bumps but does not cover the skill's key API paths or result correctness. There is no third-party execution evidence or dedicated test suite, so verifiability is limited.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 86cdeee824b7
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • The skill is presented as read-only but later includes dataset creation, parquet uploads, and agent-trace uploads; obtain explicit confirmation and verify the repository, visibility, paths, and token permissions before uploading.
  • Agent traces may contain prompts, file paths, tool outputs, secrets, or PII; a private repository does not replace pre-upload review, redaction, and credential rotation.
  • Endpoint behavior, response fields, limits, and reachability are not verified in the supplied file; validate service availability, authentication failures, rate limits, and pagination boundaries in the target environment.
Review evidence [1][2][3][4][5]
See the full review method →

What does this skill do, and when should you use it?

This Agent Skill targets Hugging Face Dataset Viewer API workflows for inspecting metadata, browsing rows, and extracting dataset content. It covers configuration and split resolution, pagination, text search, predicate filtering, Parquet URL discovery, size totals, and column statistics. Its main workflow is read-only, but the document also includes browser and CLI procedures for creating datasets and uploading Parquet files. It additionally explains how to upload raw Claude Code, Codex, and Pi Agent session traces, with privacy guidance for potentially sensitive records.

Calls the /is-valid, /splits, /first-rows, /rows, /search, /filter, /parquet, /size, /statistics, and /croissant endpoints at https://datasets-server.huggingface.co; reads rows with offset and length pagination; searches string columns; filters rows with where and orderby parameters; discovers Parquet shard links; and reads dataset totals, column statistics, and optional Croissant metadata. It also documents creating private dataset repositories and uploading Parquet files through the Hub UI, npx @huggingface/hub, or the hf CLI.

  1. A data analyst needs to verify a Hugging Face dataset and resolve its available configurations and splits.
  2. A researcher needs to inspect dataset rows in pages rather than requesting a large result at once.
  3. An engineer needs to search string columns or filter and sort rows with Dataset Viewer predicates.
  4. A data pipeline author needs Parquet shard URLs together with dataset size or column statistics.
  5. A team using Claude Code, Codex, or Pi Agent needs to publish session JSONL traces to Hugging Face Datasets with privacy-conscious defaults.

What are this skill's strengths and limitations?

Pros
  • Covers the main Dataset Viewer API endpoints for exploration, retrieval, pagination, and statistics.
  • Includes copyable curl examples and a concrete pagination pattern.
  • Also documents Parquet upload and Agent trace dataset workflows.
  • Clearly warns that traces may contain prompts, paths, tool outputs, secrets, or PII.
Limitations
  • The SKILL.md provides no test results, test suite, or representative failure responses.
  • It focuses on Dataset Viewer API workflows rather than being a complete data engineering or processing framework.
  • Dataset creation and upload depend on additional CLI tools or browser actions, and error handling is not documented.
  • Pricing, rate limits, and API availability are not addressed.

How do you install this skill?

The repository bundles 26 skills. According to the README, for Codex, copy or symlink skills/huggingface-datasets/ into a standard Codex .agents/skills location, such as $REPO_ROOT/.agents/skills or $HOME/.agents/skills. Once present, an Agent Skills-compatible client can discover its SKILL.md. The README does not provide a standalone installation command for this skill.

How do you use this skill?

After the skill is loaded by a coding agent, give a concrete request such as: "Inspect the configurations and train split for stanfordnlp/imdb, fetch the first 100 rows, and search for records containing the specified text." A supported request can use a command such as curl "https://datasets-server.huggingface.co/rows?dataset=stanfordnlp/imdb&config=plain_text&split=train&offset=0&length=100". Gated or private datasets require Authorization: Bearer <HF_TOKEN>. For pagination, increase offset and use num_rows_total, num_rows_per_page, and partial to determine continuation.

How does this skill compare with similar options?

The README presents hf-cli as the recommended entry point for broader Hugging Face Hub operations, including model search and dataset management. This skill has a narrower focus: Dataset Viewer API exploration, extraction, and related Parquet operations.

FAQ

Is this skill read-only?
Its core Dataset Viewer workflow is explicitly read-only, but the document also includes procedures for creating repositories and uploading Parquet files, so the full guidance is not limited to reads.
What is required for private or gated datasets?
Set HF_TOKEN and send Authorization: Bearer <HF_TOKEN> with the request.
How should Agent traces be uploaded?
Traces may contain prompts, file paths, tool outputs, secrets, or PII. The skill recommends private dataset repositories, preserving raw JSONL files, and nesting them by project or working directory.
Is it a complete dataset management solution?
It documents a basic Parquet creation and upload flow, but the README recommends hf-cli for broader Hub operations. This skill is best suited to Dataset Viewer exploration and extraction.

More skills from this repository

All from huggingface/skills

Dev & Engineering

Hugging Face Paper Research Assistant

Read AI papers and retrieve structured metadata from Hugging Face paper pages.

Dev & Engineering

Hugging Face Hub CLI Skill

Give agents command-line control over Hugging Face Hub models, datasets, Spaces, jobs, and infrastructure.

Dev & Engineering

Hugging Face ZeroGPU Builder

Build dependable Gradio AI demos and GPU workloads on Hugging Face ZeroGPU.

Data & Analysis

Hugging Face LLM Trainer

Train, fine-tune, and preserve models on Hugging Face cloud GPUs.

Data & Analysis

Hugging Face Local Evaluator

Run controlled inspect-ai or lighteval evaluations for Hugging Face Hub models on local hardware.

Data & Analysis

Hugging Face Model Finder

Recommends AI models by task, benchmark performance, and available device memory.

Dev & Engineering

Hugging Face API Tool Builder

Turn Hugging Face API calls into reusable, composable command-line tools.

Dev & Engineering

Hugging Face MCP Assistant

Connect agents to Hugging Face Hub for searchable models, datasets, documentation, apps, and compute jobs.

Dev & Engineering

Hugging Face Local Model Runner

Choose compatible GGUF quantizations from Hugging Face and run them locally with llama.cpp.

Dev & Engineering

LoRA Space Demo Builder

Build and publish a tailored Gradio Space for a Hugging Face LoRA.

Dev & Engineering

Hugging Face Spaces Builder

Build, deploy, debug, and maintain machine-learning apps on Hugging Face Spaces.

Data & Analysis

Sentence Transformers Training Assistant

Train retrieval, similarity, reranking, and sparse-search models with Sentence Transformers.

Data & Analysis

Hugging Face Model Memory Estimator

Estimate inference memory without downloading model weights.

Data & Analysis

Trackio Experiment Tracking

Log, monitor, and query machine-learning experiments with dashboards, diagnostic alerts, and automation-ready output.

Data & Analysis

Hugging Face Vision Trainer

Train detection, classification, and segmentation models on Hugging Face Jobs GPUs and persist the results to the Hub.

Writing & Content

Hugging Face Paper Publisher

Publish, connect, and manage research papers on the Hugging Face Hub.

Automation & Ops

SageMaker Serving Image Selector

Choose a compatible SageMaker serving container and retrieve the current regional image URI for a Hugging Face model.

Automation & Ops

AWS Context Discovery

Resolve the active AWS environment before any account operation.

Automation & Ops

SageMaker Deployment Planner

Choose a practical Amazon SageMaker deployment path for your model, traffic pattern, and latency needs.

Automation & Ops

SageMaker Python Environment Setup

Build an isolated, version-aligned Python environment for SageMaker and AWS automation.

Related skills