Borrowing it
Nothing to install: this file belongs to hardwood-hq/hardwood. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/hardwood-hq/hardwood/main/.claude/skills/parquet-dev-ml/SKILL.mdgit clone --depth 1 https://github.com/hardwood-hq/hardwoodWrote 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/hardwood-hq/hardwood/parquet-dev-ml)<a href="https://agentmods.dev/skills/hardwood-hq/hardwood/parquet-dev-ml"><img src="https://agentmods.dev/badge/skills/hardwood-hq/hardwood/parquet-dev-ml/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/hardwood-hq/hardwood/parquet-dev-ml"><img src="https://agentmods.dev/badge/skills/hardwood-hq/hardwood/parquet-dev-ml.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00117 | $0.00864 |
| Opus 5 | $0.00059 | $0.00432 |
| Sonnet 5 | $0.00023 | $0.00173 |
| Haiku 4.5 | $0.00012 | $0.00086 |
Grade A, and why
parquet-dev-ml 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 12d 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 — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Search the parquet-dev mailing list
The lists.apache.org browse UI is a JavaScript app and its stats.lua JSON gets truncated/hallucinated when read through a summarizing web fetch. The reliable path is to download the raw monthly mbox archive and grep it locally. This skill encodes that path.
Archive URL (per calendar month):
https://lists.apache.org/api/mbox.lua?list=dev&domain=parquet.apache.org&d=YYYY-MM
Caching rule
- Past months are immutable — download once and reuse the cached copy.
- The current month is live — always re-download it, because new messages arrive continuously.
mlfetch.sh implements exactly this: it re-fetches YYYY-MM if it equals the current month (date +%Y-%m) or the cache file is missing/empty, otherwise it reuses the cache. Cache lives at ${PARQUET_ML_CACHE:-${XDG_CACHE_HOME:-$HOME/.cache}/parquet-dev-ml}.
Procedure
All commands assume the skill directory:
SKILL="/workspace/.claude/skills/parquet-dev-ml"
-
Fetch the month(s) you need. Pass one or more
YYYY-MM. It prints the local mbox path(s):"$SKILL/mlfetch.sh" 2026-07 # current month → always re-downloaded "$SKILL/mlfetch.sh" 2026-05 2026-06 2026-07 # older months served from cacheIf you don't know when a thread happened, fetch the last few months and grep across all of them. Widen the range rather than guessing a single month.
-
List subjects / find the thread. Grep the mbox(es) directly:
CACHE="${PARQUET_ML_CACHE:-$HOME/.cache/parquet-dev-ml}" grep -hi '^Subject:' "$CACHE"/parquet-dev-2026-07.mbox | sort -u # every subject grep -hi '^Subject:.*thrift' "$CACHE"/parquet-dev-*.mbox | sort -u # by keywordNote the wording of subjects: a
[DISCUSS]/[VOTE]/[ANNOUNCE]prefix and phrasing may differ from how the user remembers it (e.g. the user's "Inline parquet.thrift" was really[DISCUSS] Inline parquet.thrift into parquet-java). Match on a distinctive substring, not the exact remembered title.
What ships with it
2 files 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.
- 12d ago First seen · 61 lines · 117 tokens per session scan A be3a43e7d2de
parquet-dev-ml is a skill published in the GitHub repository hardwood-hq/hardwood (372 stars, last pushed today), licensed Apache-2.0. It adds 117 tokens to every session and 864 once invoked, about $0.0006 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
evalscope
LLM evaluation & inference performance testing via the evalscope CLI. Translates natural language requests into evalscope commands for: (1) Model accuracy evaluation — runs registered benchmarks against local checkpoints or API endpoints (OpenAI-compatible, Anthropic, LiteLLM); (2) Performance stress testing — TTFT…
hotpath_init
Configure hotpath profiling in a Rust project. Adds the hotpath dependency with feature-gated setup, instruments main with hotpath::main, functions with measure/measureall, and wraps channels, mutexes, rwlocks, streams, futures, reqwest clients, axum routers and byte-level I/O with hotpath macros. Use when the user…
opentelemetry-net-instrumentation
Provides guidance for implementing OpenTelemetry instrumentation in .NET codebases, covering tracing (Activities/Spans), metrics, logs, naming conventions, error handling, performance, SDK setup, resources, context propagation, and API design best practices.
hotpath_bump
Bump the hotpath version number across the workspace and related files. Updates crate versions in Cargo.toml files (exact patch version) and version references in the backend middleware, hotpathinit skill, and README (major.minor only). Use when the user wants to bump, bump the version, or release a new hotpath…
database-performance
Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper.
codspeed-optimize
Autonomously optimize code for performance using CodSpeed benchmarks, flamegraph analysis, and iterative improvement. Use this skill whenever the user wants to make code faster, reduce CPU usage, optimize memory, improve throughput, find performance bottlenecks, or asks to 'optimize', 'speed up', 'make faster'…