ワンクリックで
csv-diff
Compare two CSV files and generate a unified diff file showing line-by-line differences.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Compare two CSV files and generate a unified diff file showing line-by-line differences.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | csv-diff |
| description | Compare two CSV files and generate a unified diff file showing line-by-line differences. |
Compare two CSV files to identify changes, additions, or deletions between them and generate a unified diff output similar to git diff.
Use this when you need to:
Compare two CSV files:
csvdiff old.csv new.csv
This will generate a result.diff file showing the differences.
csvdiff --help to see available options and usage.The tool generates a unified diff output similar to the following:
--- old.csv
+++ new.csv
@@ -2,3 +2,3 @@
0,Alice,70000
-1,John,50000
+1,John,55000
2,Jane,60000
The output shows:
- were removed or changed+ were added or changed.diff file (default: result.diff).The csv-diff-py package must be installed in your environment. You can install it globally via uv (or user-preferred python package manager):
uv tool install csv-diff-py
Alternatively, run it directly with uvx (or user-preferred python package runner):
uvx --from csv-diff-py csvdiff file1.csv file2.csv