AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

数据搬运工

skill-laborany-laborany-data-transfer · by laborany

通用数据迁移与格式转换工具,支持多种文件格式互转及简单的数据清洗。当用户需要转换文件格式、提取数据或进行数据迁移时调用。

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-laborany-laborany-data-transfer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-laborany-laborany-data-transfer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of 数据搬运工? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

数据搬运工 (Data Transfer)

高效、可靠的数据迁移与格式转换专家 (ETL Tool)。

核心能力

1. 全能格式转换

支持以下格式之间的两两互转:

  • 表格类:Excel (xlsx/xls), CSV, TSV
  • 结构化数据:JSON, JSONL, XML, YAML
  • 数据库:SQL Insert 语句, SQLite 数据库文件

2. 智能数据清洗

在搬运过程中自动执行:

  • 空值处理:填充默认值或删除空行。
  • 类型推断:自动识别数字、日期、布尔值字符串并转换。
  • 去重:根据指定字段删除重复记录。
  • 字段映射:重命名列名(如:将 user_name 映射为 姓名)。

3. 批量处理

  • 支持指定文件夹,一键转换目录下所有符合条件的文件。
  • 自动合并多个小文件为一个大文件(Merge)。

使用指南

场景一:格式转换

用户:“把这个 Excel 表转成 JSON 格式,我要给前端用。” 操作

  1. 读取 Excel 文件,识别表头。
  2. 将每一行转换为 JSON 对象。
  3. 输出 .json 文件。

场景二:数据导入准备

用户:“帮我把这个 CSV 里的用户数据生成 SQL 插入语句。” 操作

  1. 读取 CSV。
  2. 根据表结构生成 INSERT INTO users (...) VALUES (...) 语句。
  3. 保存为 .sql 文件。

示例代码 (Python)

# 简单的 CSV 转 JSON 示例
import pandas as pd

def convert_csv_to_json(input_path, output_path):
    df = pd.read_csv(input_path)
    df.to_json(output_path, orient='records', force_ascii=False)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.