← 返回 Skills 市场
antonia-sz

CSV Wizard

作者 antonia huang · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
386
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install csv-wizard
功能描述
交互式数据清洗 CLI,支持自动类型推断、缺失值处理、重复检测
使用说明 (SKILL.md)

CSV Wizard — 交互式数据清洗工具

强大的 CSV 数据清洗和转换工具,提供自动类型推断、缺失值处理、重复检测等功能。

功能特性

  • 🔍 自动类型推断(数字、日期、布尔值、分类变量)
  • 🧹 缺失值检测与多种填充策略
  • 📊 数据统计摘要与预览
  • 🔄 重复行检测与删除
  • 📝 列名标准化与重命名
  • 🎯 数据格式转换与导出

使用方法

基本清洗

/clean-csv data.csv --output clean-data.csv

交互式清洗(推荐)

/clean-csv data.csv --interactive

预览数据信息

/clean-csv data.csv --info

处理缺失值

/clean-csv data.csv --fill-missing mean --output result.csv

删除重复行

/clean-csv data.csv --drop-duplicates --output result.csv

选项说明

选项 说明
--info 显示数据基本信息
--preview 预览前 N 行数据
--fill-missing 缺失值填充策略(drop/mean/median/mode/constant)
--drop-duplicates 删除重复行
--standardize-names 标准化列名(snake_case)
--interactive 交互式模式
--output 输出文件路径

缺失值填充策略

  • drop - 删除包含缺失值的行
  • mean - 使用列均值填充(仅数值列)
  • median - 使用中位数填充(仅数值列)
  • mode - 使用众数填充
  • constant - 使用固定值填充(需配合 --fill-value

示例

# 查看数据摘要
/clean-csv sales.csv --info

# 清洗数据:删除重复行 + 填充缺失值
/clean-csv sales.csv --drop-duplicates --fill-missing median --output clean-sales.csv

# 交互式清洗
/clean-csv data.csv --interactive

# 仅标准化列名
/clean-csv data.csv --standardize-names --output output.csv

输出说明

清洗后的 CSV 文件将保留原始格式,同时:

  • 自动处理编码问题(统一为 UTF-8)
  • 移除首尾空格
  • 标准化布尔值(True/False)
安全使用建议
This skill's functionality (CSV cleaning) appears reasonable and it does not request secrets, but the package is missing the CLI implementation it advertises. Before installing or running anything: 1) do not run unknown binaries; verify the actual executable/source code—follow the README git URL and inspect the repository and releases on GitHub to ensure bin/clean-csv exists and is trustworthy; 2) prefer packages with explicit install specs or known release URLs (GitHub Releases, official domain); 3) if you must try it, run in a sandboxed environment and review the code first; 4) contact the publisher for a canonical source or updated package if you want to proceed. The current bundle is inconsistent and should be treated with caution.
功能分析
Type: OpenClaw Skill Name: csv-wizard Version: 1.0.1 The skill bundle describes a standard CSV data cleaning utility (csv-wizard) with features for type inference, missing value handling, and duplicate detection. The documentation in SKILL.md and README.md is consistent with the stated purpose, and there is no evidence of prompt injection, data exfiltration, or malicious execution instructions.
能力评估
Purpose & Capability
Name/description match a simple CSV-cleaning CLI and do not ask for credentials or unrelated resources, which is appropriate. However, skill.yaml declares an entry point (bin/clean-csv) and README suggests a GitHub repo, but no binary, install spec, or source is included in the package. That mismatch (claiming a CLI but not providing it) is incoherent.
Instruction Scope
SKILL.md only instructs running the /clean-csv command with CSV-related flags (info, preview, fill-missing, drop-duplicates, etc.). There are no instructions to read unrelated system files, access env vars, or send data to external endpoints.
Install Mechanism
There is no install spec and no code files/binaries included despite the skill manifest pointing to an entry binary. README mentions cloning a GitHub repo, but the skill metadata lists Source: unknown and Homepage: none. Absence of a clear, included install mechanism or a trusted release URL is a packaging/integrity risk.
Credentials
The skill declares no required environment variables, credentials, or config paths—appropriate for a local CSV cleaning utility. No hidden env access is visible in the provided instructions.
Persistence & Privilege
The skill does not request always:true and uses default invocation settings. It does not claim to modify other skills or system configuration. No elevated persistence is requested.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install csv-wizard
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /csv-wizard 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Version bumped from 1.0.0 to 1.0.1 with no file changes detected. - No changes to features, usage, or documentation in this release.
v1.0.0
CSV Wizard 1.0.0 — 初始发布 - 发布交互式数据清洗 CLI 工具,支持 CSV 文件的自动类型推断、缺失值处理和重复检测 - 增加多种缺失值填充策略(drop/mean/median/mode/constant) - 提供列名标准化、数据统计摘要、预览和数据格式转换功能 - 支持输出文件编码统一为 UTF-8,并标准化布尔值、移除空白字符 - 包含交互式和命令行清洗多种用法
元数据
Slug csv-wizard
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

CSV Wizard 是什么?

交互式数据清洗 CLI,支持自动类型推断、缺失值处理、重复检测. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 386 次。

如何安装 CSV Wizard?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install csv-wizard」即可一键安装,无需额外配置。

CSV Wizard 是免费的吗?

是的,CSV Wizard 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

CSV Wizard 支持哪些平台?

CSV Wizard 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 CSV Wizard?

由 antonia huang(@antonia-sz)开发并维护,当前版本 v1.0.1。

💬 留言讨论