Install
$ agentstack add skill-laborany-laborany-data-transfer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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 格式,我要给前端用。” 操作:
- 读取 Excel 文件,识别表头。
- 将每一行转换为 JSON 对象。
- 输出
.json文件。
场景二:数据导入准备
用户:“帮我把这个 CSV 里的用户数据生成 SQL 插入语句。” 操作:
- 读取 CSV。
- 根据表结构生成
INSERT INTO users (...) VALUES (...)语句。 - 保存为
.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.
- Author: laborany
- Source: laborany/laborany
- License: MIT
- Homepage: https://laborany.github.io
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.