Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

csv-data-explorerCSV 数据 explorer

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

9,526

周安装

405

GitHub Stars

公开资料未说明

下载量

3,337
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:csv-data-explorer(CSV 数据 explorer)
来源仓库:https://github.com/derick001/csv-data-explorer
安装命令:
openclaw skills install csv-data-explorer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install csv-data-explorer

简介

csv-data-explorer 通过终端交互式查询探索 CSV 数据。

  • 适合在 OpenClaw 中需要快速过滤、汇总或可视化表格内容时使用。
  • 支持 SQL 类语法查询与结果分页展示。
  • 安装命令:openclaw skills install csv-data-explorer;建议配合管道使用提升效率。
  • 注意大数据集性能,避免单次加载超限内存。

SKILL.md

name
csv-data-explorer
description
Explore, filter, summarize, and visualize CSV data directly in terminal with interactive queries.
version
1.0.0
author
skill-factory
metadata
openclaw
requires
bins
python

CSV Data Explorer

What This Does

A CLI tool to explore, analyze, and visualize CSV data directly from the terminal. Load CSV files, filter rows, calculate statistics, generate summaries, and create basic visualizations without leaving your terminal.

Key features:

  • Load and preview CSV files with automatic delimiter detection
  • Explore data structure - view columns, data types, missing values
  • Filter rows based on conditions (equality, inequality, contains, regex)
  • Select columns - include/exclude specific columns
  • Calculate statistics - mean, median, min, max, standard deviation, percentiles
  • Generate summaries - count, unique values, frequency distributions
  • Basic visualizations - histograms, bar charts, scatter plots (ASCII or simple terminal output)
  • Export results - filtered data, statistics, summaries to new CSV/JSON files
  • Interactive mode - step-by-step exploration with prompts
  • Command-line mode - scriptable operations for automation

When To Use

  • You need to quickly explore CSV data without opening spreadsheets
  • You want to filter and analyze data for reporting or debugging
  • You need to calculate basic statistics on datasets
  • You're working on servers/remote machines without GUI tools
  • You want to automate CSV data processing in scripts
  • You need to share analysis results with team members
  • You're teaching data analysis concepts in terminal environment

Usage

Basic commands:

# Load and preview a CSV file
python3 scripts/main.py preview data.csv

# Show basic statistics
python3 scripts/main.py stats data.csv

# Filter rows where column 'age' > 30
python3 scripts/main.py filter data.csv --where "age > 30"

# Select specific columns
python3 scripts/main.py select data.csv --columns name,age,salary

# Generate histogram for a column
python3 scripts/main.py histogram data.csv --column age --bins 10

# Count unique values in a column
python3 scripts/main.py unique data.csv --column category

# Export filtered data
python3 scripts/main.py filter data.csv --where "salary > 50000" --output filtered.csv

# Interactive exploration mode
python3 scripts/main.py interactive data.csv

Examples

Example 1: Preview and basic statistics

python3 scripts/main.py preview sales.csv --limit 10

Output:

CSV File: sales.csv (1000 rows × 5 columns)

First 10 rows:
┌─────┬────────────┬───────────┬────────┬───────────┐
│ Row │ Date       │ Product   │ Amount │ Region    │
├─────┼────────────┼───────────┼────────┼───────────┤
│ 1   │ 2024-01-01 │ Widget A  │ 150.50 │ North     │
│ 2   │ 2024-01-01 │ Widget B  │ 89.99  │ South     │
│ ... │ ...        │ ...       │ ...    │ ...       │
└─────┴────────────┴───────────┴────────┴───────────┘

Column summary:
- Date: 1000 non-null, type: datetime
- Product: 1000 non-null, type: string (5 unique values)
- Amount: 1000 non-null, type: float (min: 10.00, max: 999.99)
- Region: 1000 non-null, type: string (4 unique values)

Example 2: Filter and calculate statistics

python3 scripts/main.py filter sales.csv --where "Region == 'North' and Amount > 100" --stats

Output:

Filtered data: 237 rows (from 1000 total)

Statistics for filtered data:
- Count: 237
- Mean Amount: 245.67
- Median Amount: 210.50
- Min Amount: 101.00
- Max Amount: 999.99
- Standard Deviation: 145.23

Example 3: Generate histogram

python3 scripts/main.py histogram sales.csv --column Amount --bins 5

Output (ASCII approximation):

Amount Distribution (5 bins):
[10.00 - 207.99]  ████████████████████████████ 312
[208.00 - 405.99] ████████████████████ 241
[406.00 - 603.99] ██████████ 152
[604.00 - 801.99] █████ 78
[802.00 - 999.99] ███ 45

Example 4: Interactive mode

python3 scripts/main.py interactive sales.csv

Interactive mode guides you through:

  1. File loading and preview
  2. Column selection and filtering
  3. Statistical analysis
  4. Visualization options
  5. Export results

Requirements

  • Python 3.x
  • pandas library for data manipulation (installed automatically or via pip)
  • matplotlib library for visualizations (optional, for enhanced charts)

Install missing dependencies:

pip3 install pandas matplotlib

Limitations

  • Large files (>100MB) may be slow to process
  • Visualizations are ASCII-based or simple terminal plots
  • No support for Excel files or other formats (CSV only)
  • Limited to basic statistical functions (not advanced analytics)
  • No support for time series analysis or complex aggregations
  • Memory usage scales with file size
  • No built-in support for database connections
  • No support for streaming/processing very large datasets
  • Visualizations limited to terminal capabilities
  • No support for geographic data or maps
  • Limited error handling for malformed CSV files
  • No built-in data cleaning or transformation functions
  • Performance may be slower than specialized tools like R or specialized libraries

Directory Structure

The tool works with CSV files in the current directory or specified paths. No special configuration directories are required.

Error Handling

  • Invalid CSV files show helpful error messages with line numbers
  • Missing columns suggest available column names
  • Type conversion errors show expected vs actual types
  • Memory errors suggest using smaller files or filtering first
  • File not found errors suggest checking path and permissions

Contributing

This is a skill built by the Skill Factory. Issues and improvements should be reported through the OpenClaw project.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.78%
按下载量换算2,662

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install csv-data-explorer 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills