Skip to content
Documentation
Skill

/csv-analyzer

CSVファイルの行数・列数の取得、データ型推定、欠損値検出、数値列の統計情報を出力するスキル。 「CSVを分析して」「CSVの中身を確認」「データの概要を見せて」等のリクエストで発動。

From plugin
ai-agent-camp
345193 skills8 agents200 commands
Install
$ npx -y skills add minicoohei/ai-agent-camp --skill csv-analyzer --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/csv-analyzer

Context preview

The summary Claude sees to decide when to auto-load this skill.

CSVファイルの行数・列数の取得、データ型推定、欠損値検出、数値列の統計情報を出力するスキル。 「CSVを分析して」「CSVの中身を確認」「データの概要を見せて」等のリクエストで発動。

SKILL.md

csv-analyzer.SKILL.md
name: csv-analyzer
description: "CSVファイルの行数・列数の取得、データ型推定、欠損値検出、数値列の統計情報を出力するスキル。 「CSVを分析して」「CSVの中身を確認」「データの概要を見せて」等のリクエストで発動。"
triggers:
  - csv-analyzer
  - CSV分析
  - CSVファイル解析
  - データ概要
  - 欠損値チェック
  - CSV統計
  - CSVプロファイリング

トリガーワード

「CSV分析」「CSVファイル解析」「データ概要」「欠損値チェック」「CSV統計」

CSV Analyzer Skill

概要

CSVファイルを分析し、統計情報とデータ型推定を行うSkillです。

機能

  • 行数・列数の取得
  • データ型推定(各列のデータ型を自動判定)
  • 統計情報(数値列の基本統計量)
  • 欠損値検出(NULLやNA値の検出)
  • エンコーディング判定

使用方法

コマンドライン実行

python skills/csv-analyzer/scripts/analyzer.py --input data.csv

Python での利用

from scripts.analyzer import CSVAnalyzer

analyzer = CSVAnalyzer("data.csv")
result = analyzer.analyze()
print(result)

出力形式

{
  "filename": "data.csv",
  "rows": 1000,
  "columns": 5,
  "encoding": "utf-8",
  "file_size_mb": 2.5,
  "columns_info": []
}

依存関係

  • pandas >= 2.0
  • chardet >= 5.0

インストール

uv sync
Ships withai-agent-camp

AI Agent Training for Non-Engineers - Complete Guide to Claude Code / Cursor / Codex ### ⚠️ Before you clone Official repository (maintained by the authors): Running AI agents from this repo grants them shell, file-write, and external-API permissions on your

Get the whole plugin

Other skills on ai-agent-camp.