csv-excel-merger

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

A tool for combining multiple CSV or Excel spreadsheets into one file, including files whose columns or formats differ.

In plain words
What is it for?
Use it to merge spreadsheet data, align columns such as email and e-mail, and choose which value to keep when records overlap.
Why use it?
It helps consolidate exports while matching similar column names, removing duplicate records, and resolving conflicting values.

Skill for Claude CodeCodex

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

Good fit Use it to merge spreadsheet data, align columns such as email and e-mail, and choose which value to keep when records overlap.

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

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/claudecodeunleashed/csv-excel-merger.svg)](https://agentmods.dev/skills/onewave-ai/claudecodeunleashed/csv-excel-merger)
Your own site
<a href="https://agentmods.dev/skills/onewave-ai/claudecodeunleashed/csv-excel-merger"><img src="https://agentmods.dev/badge/skills/onewave-ai/claudecodeunleashed/csv-excel-merger.svg" alt="Measured on agentmods" 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 1,760 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.
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.01760
Opus 5 $0.00028 $0.00880
Sonnet 5 $0.00011 $0.00352
Haiku 4.5 $0.00006 $0.00176

Measured 8d ago against content hash 8992a7bbadb8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, 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 8d 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.

assets/starter-skills/csv-excel-merger/SKILL.md · 253 lines

How it starts

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

CSV/Excel Merger

Intelligently merge multiple CSV or Excel files with automatic column matching and data deduplication.

Instructions

When a user needs to merge CSV or Excel files:

  1. Analyze Input Files:

    • How many files need to be merged?
    • What format (CSV, Excel, TSV)?
    • Are the files provided or need to be read from disk?
    • Do columns have the same names across files?
    • What is the primary key (unique identifier)?
  2. Inspect File Structures:

    • Read headers from each file
    • Identify column names and data types
    • Detect encoding (UTF-8, Latin-1, etc.)
    • Check for missing columns
    • Look for duplicate column names
  3. Create Merge Strategy:

    Column Matching:

    • Exact name match: "email" = "email"
    • Case-insensitive: "Email" = "email"
    • Fuzzy match: "E-mail" ≈ "email"
    • Common patterns:
      • "first_name", "firstname", "First Name" → "first_name"
      • "phone", "phone_number", "tel" → "phone"
      • "email", "e-mail", "email_address" → "email"

    Conflict Resolution (when same record appears in multiple files):

    • Keep first: Use value from first file
    • Keep last: Use value from last file (most recent)
    • Keep longest: Use most complete value
    • Manual review: Flag conflicts for user review
    • Merge: Combine non-conflicting fields

    Deduplication:

    • Identify duplicate rows based on primary key
    • Options: keep first, keep last, keep all, merge values
    • Track source file for each row
  4. Perform Merge:

    # Example merge logic
    import pandas as pd
    
    # Read files
    df1 = pd.read_csv('file1.csv')
    df2 = pd.read_csv('file2.csv')
    
    # Normalize column names
    df1.columns = df1.columns.str.lower().str.strip()
    df2.columns = df2.columns.str.lower().str.strip()
    
    # Map similar columns
    column_mapping = {
        'firstname': 'first_name',
        'e_mail': 'email',
        # ...
    }
    df2 = df2.rename(columns=column_mapping)
    
    # Merge
    merged = pd.concat([df1, df2], ignore_index=True)
    
    # Deduplicate
    merged = merged.drop_duplicates(subset=['email'], keep='last')
    
    # Save
    merged.to_csv('merged_output.csv', index=False)
    

Read the full file on GitHub · 253 lines

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. 8d ago First seen · 253 lines · 56 tokens per session scan A 8992a7bbadb8

Subscribe to this mod's changes

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