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

data-qa数据质量保证

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

4,805

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dtyq/magic --skill data-qa

简介

通过执行 Python 脚本精确计算数据答案,避免直接读取幻觉。

  • 必须使用 run_python_snippet 工具运行分析代码获取准确结果。
  • 提供数值答案和业务解释的双重输出,增强回答可信度。
  • 需确保运行环境具备所需依赖包,避免执行失败中断流程。
  • data-qa 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

数据问答技能 / Data Q&A Skill

Precisely calculate data through Python scripts, provide immediate accurate numeric answers and business explanations. Directly reading data produces hallucinations; must use script complete calculation.


代码执行方式 / Code Execution Method

Data analysis code must be executed via run_python_snippet tool.


核心步骤 / Core Steps

  1. Write script: Python processes full data, outputs JSON or structured result
  2. Execute: run_python_snippet(python_code=..., script_path=..., cwd=...)
  3. Parse: Extract answer, explanation from result.content
  4. Answer: Natural language response with numeric result and business explanation
  5. End task

完整工作流示例 / Complete Workflow Example

# Step 1: 使用 run_python_snippet 执行 Python 代码
run_python_snippet(
    python_code="""
import json
import pandas as pd

df = pd.read_csv('path/to/data.csv')
metric = df['column'].sum()  # 完整计算,勿仅读取片段
print(json.dumps({'answer': metric, 'explanation': '...'}))
""",
    script_path="temp_data_qa.py",
    cwd="工作区根目录"
)

# Step 2: 解析 result.content 获取计算结果
# Step 3: 基于计算结果用自然语言回答用户问题

Key: Script must process complete data and output structured result (e.g. JSON). Strictly prohibited to answer by directly reading file snippets.


核心原则 / Core Principle

Directly reading data produces hallucinations, misleading decisions. Only through script complete calculation can accurate results be obtained.


工具选择决策树 / Tool Selection Decision Tree

User asks numeric data question? ├─ Yes → Write run_python_snippet script to calculate └─ No → Do not use this skill

Data format? ├─ CSV/Excel → pandas read, full calculation, print(json.dumps(...)) ├─ JSON → json.load + processing logic └─ Other → See data processing instructions below


数据处理规范 / Data Processing Instructions

When scenarios involve data analysis, write Python scripts for analysis:

  • Python scripts are solely for data analysis processing, not data visualization. Use ECharts for visualization. Strictly prohibited to write chart rendering code in Python scripts.
  • For data files like Excel, CSV, use read_files to read first 10 lines to understand structure, then use Python scripts for data analysis.
  • For Excel files with multiple sheets or large size, always use Python scripts for analysis. First use script to view data structure and sheet structure, then perform analysis. Scripts should return only small amount of result data, avoid reading large volumes of useless data.
  • Python script processing results should be refined. Script's role is to calculate and distill core data, not return large amounts of process data. Typically hundreds to thousands of characters, max 5000 characters.
  • Follow latest mainstream Python programming practices. Ensure code robustness, aim for one-time successful execution.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.23%
按下载量换算28

Claude

31.54%
按下载量换算26

Cursor

16.44%
按下载量换算13

Gemini CLI

9.83%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills