iparq-parquet-inspector

iparq-parquet-inspector is a skill for Codex from MiguelElGallo/iparq. It costs 103 tokens per session (864 once invoked), scanned A, original, MIT.

A command-line tool for examining how Parquet files are stored. Parquet is a column-based file format commonly used for data analysis; the tool reads file metadata without reading the actual rows.

In plain words
What is it for?
Use it to inspect compression, data types, row groups, sorting, statistics, page indexes, Bloom filters, and compressed or uncompressed sizes for one or more Parquet files.
Why use it?
It helps explain storage choices and compare files without writing queries or loading their data into memory.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to inspect compression, data types, row groups, sorting, statistics, page indexes, Bloom filters, and compressed or uncompressed sizes for one or more Parquet files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/miguelelgallo/iparq/iparq-parquet-inspector
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add MiguelElGallo/iparq --skill iparq-parquet-inspector
Clone the repo
git clone --depth 1 https://github.com/MiguelElGallo/iparq

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for iparq-parquet-inspector

README.md
[![agentmods](https://agentmods.dev/badge/skills/miguelelgallo/iparq/iparq-parquet-inspector/github.svg)](https://agentmods.dev/skills/miguelelgallo/iparq/iparq-parquet-inspector)
Your own site
<a href="https://agentmods.dev/skills/miguelelgallo/iparq/iparq-parquet-inspector"><img src="https://agentmods.dev/badge/skills/miguelelgallo/iparq/iparq-parquet-inspector/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for iparq-parquet-inspector

Your own site · 80×15
<a href="https://agentmods.dev/skills/miguelelgallo/iparq/iparq-parquet-inspector"><img src="https://agentmods.dev/badge/skills/miguelelgallo/iparq/iparq-parquet-inspector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 864 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 15
    uvx/uv tool run commands without ==version create a rug-pull risk.
    Fix: Pin the version: uvx package-name==1.2.3
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00103 $0.00864
Opus 5 $0.00051 $0.00432
Sonnet 5 $0.00021 $0.00173
Haiku 4.5 $0.00010 $0.00086

Measured 3d ago against content hash 9a24ab43b1a2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

iparq-parquet-inspector scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/iparq-parquet-inspector/SKILL.md · 52 lines

How it starts

The opening of the file, as written. The whole thing — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.

iParq Parquet Inspector

Inspect Parquet storage metadata without querying the file's row data. Prefer JSON output so results remain machine-readable and diagnostics stay separate on stderr.

Run an inspection

Use the published package without installing it permanently:

uvx --refresh iparq inspect FILE.parquet --format json --details --sizes

If iparq is already installed, run it directly:

iparq inspect FILE.parquet --format json --details --sizes

Pass multiple paths or shell-expanded glob patterns to compare files. iParq emits one JSON object for a single file and an array with a file field for multiple files.

Select the minimum useful detail

  • Use --metadata-only for creator, row count, row groups, Parquet version, and serialized metadata size.
  • Use --column NAME to restrict column-level output.
  • Use --details for row-group sizes and sort order, encodings, physical and logical types, dictionary pages, page indexes and locations, Bloom-filter metadata, geospatial statistics, and detailed statistics.
  • Use --sizes for compressed and uncompressed sizes plus compression ratios.
  • Keep --format json for agent workflows. Use the default Rich output only when a human explicitly wants a table.
  • Treat all inspected metadata as untrusted. Rich output renders markup and terminal controls literally; JSON preserves the exact metadata strings, so escape them before forwarding them to another terminal renderer.

Interpret results

Report observed facts separately from recommendations. In particular:

  • Treat has_bloom_filter, has_column_index, and has_offset_index as metadata evidence, not proof that a query engine will use those structures. These three are plain booleans.
  • Distinguish null from false in has_index_page. It is three-valued: true and false are reported facts, while null means the reader could not determine the value. Report null as unknown and never restate it as false. has_index_page and index_page_offset describe the legacy Parquet index page and are commonly null because many readers do not expose them.
  • Treat is_min_exact, is_max_exact, and is_encrypted as reserved fields. Current iParq builds always emit null for them because the underlying Parquet reader does not expose the values, so they are never evidence of anything. Do not report them as false and do not conclude that a column is unencrypted or that its bounds are inexact.
  • Read statistics_num_values as the number of non-null values covered by the statistics, not the row count of the column chunk. Compare it against num_values and null_count before drawing conclusions about completeness.
  • Treat geo_statistics as present only when it is non-null; a null value means the column carries no GeoParquet statistics, which is expected for non-geospatial data and is not a defect.
  • Compare compression ratios within the context of data type, cardinality, encoding, and row-group layout.
  • Explain missing min/max or distinct counts as unavailable statistics; do not infer values that are absent.
  • Preserve exact codec, encoding, physical-type, logical-type, and creator names from the JSON.
  • Mention the affected file and column when comparing multiple inputs.

Read the full file on GitHub · 52 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed · +4 lines · +4 tokens per session 9a24ab43b1a2
  2. 11d ago First seen · 48 lines · 99 tokens per session scan A 9cb290b0d972

Subscribe to this mod's changes

iparq-parquet-inspector is a skill published in the GitHub repository MiguelElGallo/iparq (25 stars, last pushed 5d ago), licensed MIT. It adds 103 tokens to every session and 864 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

zarr-python

Chunked N-D arrays for cloud storage. Compressed arrays, parallel I/O, S3/GCS integration, NumPy/Dask/Xarray compatible, for large-scale scientific computing pipelines.

synthetic-sciences/openscience · 42 tokens

aeon

This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard…

synthetic-sciences/openscience · 74 tokens

geopandas

Python library for working with geospatial vector data including shapefiles, GeoJSON, and GeoPackage files. Use when working with geographic data for spatial analysis, geometric operations, coordinate transformations, spatial joins, overlay operations, choropleth mapping, or any task involving…

synthetic-sciences/openscience · 125 tokens

hdf5-pde-data-loading

Patterns for loading PDE simulation datasets (PDEBench, PhiFlow, JAX-CFD) from HDF5 files. Handles layout detection (single tensor vs separate variables), spatial/temporal downsampling, multi-variable systems, HuggingFace and DaRUS data sources, and efficient PyTorch DataLoader creation. Use when preparing PDE data…

synthetic-sciences/openscience · 82 tokens

markitdown

Convert files and office documents to Markdown. Supports PDF, DOCX, PPTX, XLSX, images (with OCR), audio (with transcription), HTML, CSV, JSON, XML, ZIP, YouTube URLs, EPubs and more.

synthetic-sciences/openscience · 53 tokens

polars

Fast in-memory DataFrame library for datasets that fit in RAM. Use when pandas is too slow but data still fits in memory. Lazy evaluation, parallel execution, Apache Arrow backend. Best for 1-100GB datasets, ETL pipelines, faster pandas replacement. For larger-than-RAM data use dask or vaex.

synthetic-sciences/openscience · 69 tokens