import-dataset-from-local

Import local files into Pixie dataset directories with manifest generation.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates importing a local file or folder into a Pixie tool's dataset directory by creating a complete manifest, updating the README, and ensuring reproducible data imports.

Core Features & Use Cases

  • Import local files or folders into a tool's data/datasets/<id>/files/ with an atomic manifest and dataset entry.
  • Choose import modes (--copy, --symlink, --move) with safety checks and path validations.
  • Generate manifest.json, README updates, and special markers to support auditing and provenance.

Quick Start

Provide a local path and target tool id to import the dataset into the corresponding tool's data/datasets/<id>/files/ and generate the manifest

Frequently Asked Questions about import-dataset-from-local

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

FAQPage Schema
How do I import a local file into a Pixie dataset directory?

You can import a local file into a Pixie dataset by providing its local path and the target tool ID. The process places the data under the tool's datasets directory and generates a manifest automatically.

What is the best way to ensure reproducible local data imports with a manifest?

Ensuring reproducible local data imports involves generating a manifest.json, updating the README, and creating marker files. This enforces local-source validation and checksum calculation for auditable provenance.

Can I use symlinks instead of copying files when importing local datasets?

Yes, you can use symlinks instead of copying. The import process supports --copy, --symlink, and --move modes, allowing you to choose how local files are placed into the dataset directory with safety checks.

How does checksum calculation work for local dataset imports?

Checksum calculation works by computing file hashes during the local dataset import process. These checksums are recorded in the manifest.json to support data auditing, provenance tracking, and reproducibility.

What path validations are enforced when moving local files to a dataset directory?

When moving local files to a dataset directory, the process enforces local-source validation and destination checks. This ensures paths are valid before data is placed under the tool's specific datasets/files/ directory.