Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问clear审计通过

multi-source-data-merger多源数据合并

Agent Skill

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

总安装

823

周安装

35

GitHub Stars

93

下载量

288
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:multi-source-data-merger(多源数据合并)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/multi-source-data-merger
安装命令:
npx skills add https://github.com/letta-ai/skills --skill multi-source-data-merger
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill multi-source-data-merger

简介

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。

  • 适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。
  • 使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实。
  • 涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。
  • 安装前建议确认维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

Multi Source Data Merger

Overview

This skill guides the process of merging data from multiple sources with different formats into a unified dataset. It covers reading heterogeneous file formats, applying field name mappings, resolving conflicts using priority ordering, and generating comprehensive output files including conflict reports.

Workflow

Step 1: Analyze Requirements and Source Files

Before writing any code, thoroughly understand the task:

  1. Identify all source files and their formats (JSON, CSV, Parquet, XML, etc.)
  2. Determine the merge key (e.g., user_id, record_id) that links records across sources
  3. Review field mapping requirements - source fields may have different names that map to common output fields
  4. Understand conflict resolution rules - typically based on source priority ordering
  5. Identify expected output formats and structure

Important: Do not attempt to read binary formats (Parquet, Excel, etc.) as text files - use appropriate libraries.

Step 2: Set Up Environment

  1. Create a Python virtual environment using uv or venv
  2. Install required dependencies based on source formats:

- pandas - Core data manipulation - pyarrow - Parquet file support - openpyxl - Excel file support - lxml - XML parsing (if needed)

  1. Verify installations before proceeding

Example environment setup:

uv venv .venv
source .venv/bin/activate
uv pip install pandas pyarrow

Step 3: Write the Merge Script

Structure the script with clear separation of concerns:

  1. Data reading functions - One per format type
  2. Field mapping function - Apply column renames
  3. Data normalization - Handle date formats, type conversions
  4. Merge logic - Combine records using the merge key
  5. Conflict resolution - Apply priority rules
  6. Output generation - Write merged data and conflict reports

Script quality practices:

  • Validate syntax before execution: python -m py_compile script.py
  • Use try-except blocks with informative error messages
  • Document assumptions about data formats

Step 4: Execute and Verify

Run a comprehensive verification process:

  1. Check output file existence at expected locations
  2. Validate merged data contains expected values
  3. Verify conflict report structure and content
  4. Run any provided test suites

Common Pitfalls

Binary File Handling

  • Mistake: Attempting to read Parquet/Excel files as text
  • Solution: Always use pandas with appropriate engine (pyarrow for Parquet, openpyxl for Excel)

Syntax Errors in Scripts

  • Mistake: Writing long scripts without validation, leading to indentation or syntax errors
  • Solution: Run python -m py_compile script.py before execution

Date Format Normalization

  • Mistake: Assuming consistent date formats across sources
  • Solution: Implement flexible date parsing that handles multiple formats:

- ISO format: 2024-01-15 - US format: 01/15/2024 - European format: 15-01-2024 - Datetime: 2024-01-15T10:30:00

Incomplete Script Output

  • Mistake: Writing very long scripts that may get truncated
  • Solution: Break into modular functions, verify complete code visibility

Environment Path Issues

  • Mistake: Repeating PATH exports in every command
  • Solution: Set PATH once in a setup step or use absolute paths to executables

Verification Strategies

Output Validation Checklist

  1. File existence check: import os assert os.path.exists("output/merged_data.json") assert os.path.exists("output/conflict_report.json")
  2. Data completeness check: import json with open("output/merged_data.json") as f: data = json.load(f) # Verify expected record count assert len(data) == expected_count
  3. Conflict report validation: with open("output/conflict_report.json") as f: conflicts = json.load(f) # Verify conflict structure has required fields for conflict in conflicts: assert "field" in conflict assert "selected" in conflict assert "sources" in conflict
  4. Sample value verification: # Spot-check specific merged records record = next(r for r in data if r["user_id"] == "expected_id") assert record["field_name"] == "expected_value"

Consolidate Verification

Instead of running multiple separate verification commands, create a single comprehensive test script that validates all aspects of the output.

Edge Cases to Consider

  • Empty source files - Handle gracefully with appropriate warnings
  • Missing merge keys - Decide whether to skip or error
  • Type mismatches - Convert consistently (e.g., user_id as string vs integer)
  • Null/None values - Determine handling in conflict resolution
  • Unicode/encoding - Specify encoding when reading text-based formats
  • Records in some sources but not others - Include partial records or require complete matches

Field Mapping Example

When sources have different field names for the same concept:

FIELD_MAPPINGS = {
    "source_a": {
        "firstName": "first_name",
        "lastName": "last_name",
        "emailAddress": "email"
    },
    "source_b": {
        "fname": "first_name",
        "lname": "last_name",
        "mail": "email"
    }
}

def apply_mapping(df, source_name):
    mapping = FIELD_MAPPINGS.get(source_name, {})
    return df.rename(columns=mapping)

Conflict Resolution Pattern

When the same field has different values across sources:

def resolve_conflict(values_by_source, priority_order):
    """
    Select value based on source priority.

    Args:
        values_by_source: dict mapping source name to value
        priority_order: list of source names from highest to lowest priority

    Returns:
        tuple: (selected_value, conflict_info)
    """
    conflict_info = None
    unique_values = set(v for v in values_by_source.values() if v is not None)

    if len(unique_values) > 1:
        conflict_info = {
            "sources": values_by_source,
            "resolved_by": "priority"
        }

    for source in priority_order:
        if source in values_by_source and values_by_source[source] is not None:
            return values_by_source[source], conflict_info

    return None, conflict_info

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.27%
按下载量换算84

Gemini CLI

21.87%
按下载量换算63

Antigravity

17.55%
按下载量换算51

windsurf

12.56%
按下载量换算36

OpenCode

7.6%
按下载量换算22

Codex

3.5%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills