Install
$ agentstack add skill-danielrosehill-claude-data-wrangler-plugin-parquet-jsonl-package ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Parquet & JSONL Packaging
Produce Parquet and/or JSONL output for a dataset, optionally partitioned and compressed.
When to invoke
- User wants a Parquet file for analytics (DuckDB, Spark, pandas at scale, ML training).
- User wants JSONL for streaming or HF Datasets native ingestion.
- Preparing for upload via the
hf-dataset-pushskill.
Procedure
- Confirm source and target formats — JSONL, Parquet, or both.
- Load the dataset (CSV, JSON, Excel).
- Schema enforcement — ask whether to:
- Auto-infer (pandas/pyarrow default).
- Enforce a schema from the data dictionary if one exists.
- Prompt for explicit types on each column (interactive).
- Parquet options:
- Compression:
snappy(default, fast),zstd(better ratio),gzip(max portability). - Row group size: default
pyarrow. Offer 64k / 256k rows for large datasets. - Partitioning: ask if the user wants to partition by a column (e.g.
country,year). Produces a directory layout (country=FR/data.parquet).
- JSONL options:
- Compression: none (default),
gzip,zstd— produce.jsonl.gz/.jsonl.zst. - Line ordering: preserve input order by default.
- Write outputs next to the source (or to a user-specified directory):
.parquet(or/directory for partitioned)..jsonlor.jsonl.gz.
- Validate:
- Round-trip load both outputs and check row count against source.
- Print schema (pyarrow schema or JSON key sample).
- Report file sizes and compression ratio.
- Update the data dictionary with the new packaged file(s) and their paths.
Dependencies
pip install pandas pyarrow
# optional
pip install zstandard
Edge cases
- Mixed-type columns — Parquet requires a consistent type per column. Cast or split before writing; report casts.
- Datetime handling — Parquet has native timestamp types; JSONL must use ISO 8601 strings. Record the convention in the data dictionary.
- Null representation — Parquet handles null natively; JSONL uses
null. Empty strings are not null. - Very large datasets — stream in chunks rather than loading fully. Use
pyarrow.parquet.ParquetWriterand chunked JSONL writes. - Nested data — Parquet supports nested (struct/list) types natively. JSONL is naturally nested. If coming from CSV, document the nesting produced (via
json-restructure) before packaging.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: danielrosehill
- Source: danielrosehill/Claude-Data-Wrangler-plugin
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.