data-transformer

data-transformer is a skill for Claude Code, Codex from tetracoralla/BatchTicket. It costs 63 tokens per session (1,569 once invoked), scanned A, original, Apache-2.0.

A skill for deterministic work with structured files such as JSON, JSONL, CSV, TSV, YAML, and Parquet. It uses BatchTicket tools to inspect, transform, validate, and compare data without rewriting it through model reasoning.

In plain words
What is it for?
Use it to inspect unknown data shapes, map one structured format to another, check schemas or rows, compare datasets, and summarize large payloads.
Why use it?
It reduces errors when reshaping large or structured datasets and avoids repeating routine data operations in generated code.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/tetracoralla/batchticket/data-transformer
Any agent
npx skills add tetracoralla/BatchTicket --skill data-transformer
Clone the repo
git clone --depth 1 https://github.com/tetracoralla/BatchTicket

Made for: Claude Code, 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 data-transformer

README.md
[![agentmods](https://agentmods.dev/badge/skills/tetracoralla/batchticket/data-transformer.svg)](https://agentmods.dev/skills/tetracoralla/batchticket/data-transformer)
Your own site
<a href="https://agentmods.dev/skills/tetracoralla/batchticket/data-transformer"><img src="https://agentmods.dev/badge/skills/tetracoralla/batchticket/data-transformer.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,569 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00063 $0.01569
Opus 5 $0.00032 $0.00785
Sonnet 5 $0.00013 $0.00314
Haiku 4.5 $0.00006 $0.00157

Measured 4d ago against content hash 40137f37dd9d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

data-transformer 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 4d 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.

skills/data-transformer/SKILL.md · 145 lines

How it starts

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

BatchTicket

Move structured-data work from model reasoning into the deterministic BatchTicket tools. Keep semantic mapping choices with the user when field meaning is ambiguous.

Route the task

  • Call data_inspect when the source shape is genuinely unknown or the user asks what it contains.
  • Call data_transform directly when the source shape and requested mapping are already known. Do not add a preliminary inspect call by habit.
  • Call data_validate for JSON Schema, non-null, unique, type, field, or row-count checks.
  • Call data_diff for schema and record comparison; provide stable key fields when records have a real unique identity.

An ordinary known task should take one tool call. One successful deterministic call is sufficient for its recorded observations: never repeat identical arguments for confirmation, and never rerun merely to change sample_rows, shorten presentation, or obtain a differently sized duplicate sample. If result.data is present, answer from it. Treat a stable validation failure or input error as the result; do not retry with guessed fields or generic code. None of these runtime observations independently proves semantic or business correctness.

Omit optional sampling controls for ordinary small results. If the user actually needs a bounded sample, use sample_rows: 5 unless they requested another value; the hard maximum is 100. Never substitute 100 or 1000 as a default merely because a schema advertises a maximum.

Use the public tool schema directly; do not search the installed plugin, runtime bundle, README, source tree, or memory to discover arguments. Common source forms are:

{"source":{"path":"users.json","select":"data.users[*]"},"sample_rows":2}
{"source":{"inline":[{"id":1},{"id":2}]},"sample_rows":2}

select belongs inside source. When an unselected JSON or YAML envelope contains nested record arrays, one data_inspect call reports them in shape.record_sets with their selector, row count, recursively profiled fields, and logical JSON types; the separate bounded tree sample retains examples at those paths. Those logical types are the public contract for user-facing field/type questions. Answer from that result; do not make a second selector call merely to replace logical JSON types with DuckDB storage types unless the user explicitly asks for engine-level types.

Read the full file on GitHub · 145 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. 4d ago First seen · 145 lines · 63 tokens per session scan A 40137f37dd9d

Subscribe to this mod's changes

data-transformer is a skill published in the GitHub repository tetracoralla/BatchTicket (0 stars, last pushed today), licensed Apache-2.0. It adds 63 tokens to every session and 1,569 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

extracting-keywords

Use when extracting keywords (YAKE/RAKE) from documents — and, secondarily, when detecting document language or generating embeddings for RAG and search. Covers the keyword config (and its feature gating), --detect-language, and the standalone embed command with real flags.

xberg-io/xberg · 63 tokens

neo4j-knowledge-graph

Use when designing, importing, querying, or modernizing Neo4j knowledge graphs from CSV, Excel, pandas, Cypher, py2neo, the official neo4j Python driver, vector indexes, or GraphRAG workflows.

MazzaWill/neo4j-python-pandas-py2neo-v3 · 55 tokens

malloy-document

Add documentation with #(doc) tags to Malloy models so fields and sources are described in plain language. Use when user asks to "add documentation", "add doc tags", "document the model", or wants fields and sources described for natural-language search and discovery. For declaring parameterizable filters with…

malloydata/publisher · 94 tokens

data-science-analysis

Computes a numeric or categorical answer to a quantitative data-science question by cleaning and analyzing local data files (CSV, Excel, TSV, and scientific formats .npz/.fits/.h5) with pandas, numpy, and scipy. Use whenever a task ships its own dataset (in whatever local directory it provides) and asks you to derive…

agentscope-ai/QwenPaw-Data · 237 tokens

docutranslate

Use when translating documents locally via LLM — PDF, Word, Excel, Markdown, SRT subtitles with format preservation. DocuTranslate: LLM-powered multi-format local file translation tool with MCP server support.

znlgis/opengis-skills · 47 tokens

leiloeiro-edital-ranbot-ai

Analise e auditoria de editais de leilao judicial e extrajudicial. Riscos ocultos, clausulas perigosas, debitos, ocupante e classificacao da oportunidade.

ThomasMoreAI/legal-skills-open · 51 tokens