csv-excel-merger

csv-excel-merger is a skill for Claude Code, Codex from OneWave-AI/claude-skills. It costs 56 tokens per session (991 once invoked), scanned A, original, MIT.

A workflow for combining CSV and Excel spreadsheets, including files with different column names or formats.

In plain words
What is it for?
Use it to consolidate spreadsheet exports or data sources into one file and verify the resulting merge.
Why use it?
It reduces the manual work of matching columns, removing duplicate records, and deciding how conflicting values should be handled.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

not rated 288repo +2 1mo ago A scan Socket: passSnyk: passSkillSpector: warn 56 tokens original MIT

Good fit Use it to consolidate spreadsheet exports or data sources into one file and verify the resulting merge.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/onewave-ai/claude-skills/csv-excel-merger
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 OneWave-AI/claude-skills --skill csv-excel-merger
Clone the repo
git clone --depth 1 https://github.com/OneWave-AI/claude-skills

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 csv-excel-merger

README.md
[![agentmods](https://agentmods.dev/badge/skills/onewave-ai/claude-skills/csv-excel-merger/github.svg)](https://agentmods.dev/skills/onewave-ai/claude-skills/csv-excel-merger)
Your own site
<a href="https://agentmods.dev/skills/onewave-ai/claude-skills/csv-excel-merger"><img src="https://agentmods.dev/badge/skills/onewave-ai/claude-skills/csv-excel-merger/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 csv-excel-merger

Your own site · 80×15
<a href="https://agentmods.dev/skills/onewave-ai/claude-skills/csv-excel-merger"><img src="https://agentmods.dev/badge/skills/onewave-ai/claude-skills/csv-excel-merger.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 991 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
  • Socket pass 18 Mar 2026
  • Snyk pass 15 Feb 2026
  • 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 Excessive Agency · line 50
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00056 $0.00991
Opus 5 $0.00028 $0.00495
Sonnet 5 $0.00011 $0.00198
Haiku 4.5 $0.00006 $0.00099

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

Security

Grade A, and why

csv-excel-merger 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 11d 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.

csv-excel-merger/SKILL.md · 85 lines

How it starts

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

CSV/Excel Merger

Merge multiple CSV or Excel files with automatic column matching, deduplication, and conflict resolution.

Contents

  • Workflow — the step-by-step merge process
  • Verification — confirm the merge before handing it back
  • Special cases — encoding, compound keys, large files
  • Guidelines — quality and transparency standards
  • Example triggers
  • references/merge_strategies.md — column matching, conflict resolution, and dedup options
  • references/output_template.md — the merge-report format

Workflow

  1. Inspect the inputs. Determine file count, format (CSV / Excel / TSV), and whether the files are attached or read from disk. Read each header; identify column names, data types, and encoding (UTF-8, Latin-1). Note the candidate primary key.

  2. Plan the merge. Match columns across files to one unified schema, choose a conflict-resolution rule, and pick a deduplication strategy. See references/merge_strategies.md for the matching heuristics and the full set of options.

  3. Execute the merge with pandas:

    import pandas as pd
    
    df1 = pd.read_csv("file1.csv")
    df2 = pd.read_csv("file2.csv")
    
    # Normalize, then map column names onto the unified schema
    for df in (df1, df2):
        df.columns = df.columns.str.lower().str.strip()
    df2 = df2.rename(columns={"firstname": "first_name", "e_mail": "email"})
    
    merged = pd.concat([df1, df2], ignore_index=True)
    merged = merged.drop_duplicates(subset=["email"], keep="last")
    merged.to_csv("merged_output.csv", index=False)
    
  4. Verify the result before reporting — see Verification.

  5. Report using the layout in references/output_template.md, then offer export options: CSV (UTF-8), Excel (.xlsx), JSON, SQL INSERT statements, or Parquet for large datasets.

Verification

Never hand back a merge without checking it. After merging, assert the row math holds and the key is actually unique:

Read the full file on GitHub · 85 lines

Files

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.

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. 11d ago First seen · 85 lines · 56 tokens per session scan A 7d0921932f72

Subscribe to this mod's changes

csv-excel-merger is a skill published in the GitHub repository OneWave-AI/claude-skills (288 stars, last pushed 1mo ago), licensed MIT. It adds 56 tokens to every session and 991 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-30.

Related

Other skills, from other repositories

google-apps-script

Build Google Apps Script automation for Sheets and Workspace. Custom menus, triggers (onEdit / time-driven / form submit), dialogs, sidebars, email batches, PDF export, external API. Use whenever the user wants to automate a Google Sheet, build a Sheets menu / sidebar / dialog, hit a Sheets row from email or a…

jezweb/claude-skills · 89 tokens

literature-matrix-builder

A tool for turning a collection of research papers in PDF format into an organised literature library and comparison spreadsheet. It can find identifiers such as DOIs, retrieve publication details, check for retractions, and prepare reference lists.

Nero1688/claude-academic-skills · 501 tokens

xlsx

Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify…

Prat011/awesome-llm-skills · 96 tokens

param-xlsx-sync

A workflow for updating structured equipment-parameter tables from Excel files into Markdown files. It recognises rows marked for deletion, compares the data with specification documents, and records approved changes.

CookiesHaha/ash-claude-skills · 122 tokens

xlsx

Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…

lingxling/awesome-skills-cn · 201 tokens

xlsx-th

สร้าง .xlsx + formula + chart | สำหรับ HR ธุรการ หรือผู้จัดการที่ต้อง. Triggers when user says (Thai/EN): 'excel', 'xlsx', 'สเปรดชีต.

PiNocPie/thai-claude-skills · 0 tokens