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.
npx skills add MiguelElGallo/iparq --skill iparq-parquet-inspectorgit clone --depth 1 https://github.com/MiguelElGallo/iparqWrote 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.
[](https://agentmods.dev/skills/miguelelgallo/iparq/iparq-parquet-inspector)<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.
<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>- NVIDIA SkillSpector warn
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
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.
| Model | Per session | Once 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 |
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.
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-onlyfor creator, row count, row groups, Parquet version, and serialized metadata size. - Use
--column NAMEto restrict column-level output. - Use
--detailsfor 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
--sizesfor compressed and uncompressed sizes plus compression ratios. - Keep
--format jsonfor 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, andhas_offset_indexas metadata evidence, not proof that a query engine will use those structures. These three are plain booleans. - Distinguish
nullfromfalseinhas_index_page. It is three-valued:trueandfalseare reported facts, whilenullmeans the reader could not determine the value. Reportnullas unknown and never restate it asfalse.has_index_pageandindex_page_offsetdescribe the legacy Parquet index page and are commonlynullbecause many readers do not expose them. - Treat
is_min_exact,is_max_exact, andis_encryptedas reserved fields. Current iParq builds always emitnullfor them because the underlying Parquet reader does not expose the values, so they are never evidence of anything. Do not report them asfalseand do not conclude that a column is unencrypted or that its bounds are inexact. - Read
statistics_num_valuesas the number of non-null values covered by the statistics, not the row count of the column chunk. Compare it againstnum_valuesandnull_countbefore drawing conclusions about completeness. - Treat
geo_statisticsas present only when it is non-null; anullvalue 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.
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.
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.
- 3d ago Changed · +4 lines · +4 tokens per session 9a24ab43b1a2
- 11d ago First seen · 48 lines · 99 tokens per session scan A 9cb290b0d972
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.
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.
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…
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…
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…
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.
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.