Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计异常

data-expert数据专家

Agent Skill

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

总安装

1,836

周安装

75

GitHub Stars

25

下载量

594
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/oimiragieo/agent-studio --skill data-expert

简介

提供数据探索、质量检查与分析编码规范指导。

  • 强调缺失值处理、分布统计与异常检测方法论。
  • 适用于服务端组件数据获取与渲染逻辑审查。
  • 需结合具体业务场景选择合适的数据清洗策略。
  • 推荐在分析初期即实施数据质量验证步骤。data-expert 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Data Expert

data analysis initial exploration

When reviewing or writing code, apply these guidelines:

  • Begin analysis with data exploration and summary statistics.
  • Implement data quality checks at the beginning of analysis.
  • Handle missing data appropriately (imputation, removal, or flagging).

data fetching rules for server components

When reviewing or writing code, apply these guidelines:

  • For data fetching in server components (in.tsx files): tsx async function getData() {const res = await fetch('https://api.example.com/data', {next: {revalidate: 3600}}) if (!res.ok) throw new Error('Failed to fetch data') return res.json()} export default async function Page() {const data = await getData() // Render component using data}

data pipeline management with dvc

When reviewing or writing code, apply these guidelines:

  • Data Pipeline Management: Employ scripts or tools like dvc to manage data preprocessing and ensure reproducibility.

data synchronization rules

When reviewing or writing code, apply these guidelines:

  • Implement Data Synchronization:

- Create an efficient system for keeping the region grid data synchronized between the JavaScript UI and the WASM simulation. This might involve: a. Implementing periodic updates at set intervals. b. Creating an event-driven synchronization system that updates when changes occur. c. Optimizing large data transfers to maintain smooth performance, possibly using typed arrays or other efficient data structures. d. Implementing a queuing system for updates to prevent overwhelming the simulation with rapid changes.

data tracking and charts rule

When reviewing or writing code, apply these guidelines:

  • There should be a chart page that tracks just about everything that can be tracked in the game.

data validation with pydantic

When reviewing or writing code, apply these guidelines:

  • Data Validation: Use Pydantic models for rigorous

Consolidated Skills

This expert skill consolidates 1 individual skills:

  • data-expert

Iron Laws

  1. ALWAYS validate all external data at system boundaries using a schema validator (Zod, Pydantic, Joi) — never trust API responses, user input, or file contents without validation.
  2. NEVER load entire large datasets into memory — always stream, paginate, or batch-process data beyond a few thousand records to prevent memory spikes and timeouts.
  3. ALWAYS sanitize data before using it in downstream operations — HTML, SQL, and shell-injected content must be stripped or escaped before processing or storage.
  4. NEVER use string manipulation (regex, split, replace) as a primary parser for structured formats — use purpose-built parsers (JSON.parse, csv-parse, xml2js) for reliable type-safe results.
  5. ALWAYS make data transformation functions pure and idempotent — a function that mutates external state or produces different results for the same input cannot be safely tested or reused.

Anti-Patterns

Anti-PatternWhy It FailsCorrect Approach
Trusting API responses without validationAPI schemas change silently; unvalidated data causes downstream type errorsValidate all responses with Zod/Pydantic schemas at the API boundary
fs.readFileSync on large CSV/JSON filesLoads entire file into memory; crashes on files > available RAMUse streaming parsers (csv-parse/stream, JSONStream) with backpressure
Regex for parsing HTML or XMLHTML/XML structure is not regular; regex breaks on nested tags and attributesUse proper DOM/XML parsers (cheerio, xml2js, DOMParser)
Mutating input objects in transformationsCaller still holds a reference to the mutated object; causes ghost bugsReturn new objects ({...input, newField}) instead of mutating
Logging full request/response bodies with PIIPII ends up in log aggregators readable by non-authorized usersRedact PII fields before logging; log schemas and IDs only

Memory Protocol (MANDATORY)

Before starting:

cat .claude/context/memory/learnings.md

After completing: Record any new patterns or exceptions discovered.

ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.25%
按下载量换算215

Claude

27.94%
按下载量换算166

Cursor

17.99%
按下载量换算107

Gemini CLI

10.55%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills