Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

data-analysis数据分析

Agent Skill

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

总安装

374

周安装

15

GitHub Stars

2

下载量

121
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-gods --skill data-analysis

简介

用于结构化数据集处理与统计口径生成,适合 CSV/Excel 清洗与异常检测。

  • 适用于计算指标、对比分组或生成可视化所需的数据摘要。
  • 使用时需确认字段含义与时间范围,避免将样本当作全量事实使用。
  • 安装命令:npx skills add https://github.com/akillness/oh-my-gods --skill data-analysis。
  • 涉及敏感数据时应先脱敏,批量写回前需二次确认操作权限。

SKILL.md

Data Analysis

Data-analysis is the structured-dataset lane. Keep the main skill focused on turning raw tables, exports, query results, and metrics slices into evidence-backed findings instead of collapsing into dashboard-building, raw log triage, or pure anomaly hunting.

Read references/analysis-lanes-and-scope.md when the first problem is figuring out whether the work is dataset triage, SQL slicing, notebook-scale analysis, or stakeholder summary. Read references/data-quality-and-readout-shape.md when the request needs a tighter quality pass, segment comparison, experiment readout, or concise decision memo.

When to use this skill

  • Inspect a CSV, JSON, Parquet, spreadsheet export, or SQL query result
  • Validate data quality, schema drift, nulls, duplicates, outliers, or bad joins
  • Explain KPI movement, funnels, retention, cohorts, campaign performance, or segment differences
  • Summarize experiments, telemetry exports, finance-style reports, or stakeholder metrics packets
  • Turn raw data into findings, caveats, and next actions instead of a pile of tables

When not to use this skill

  • The main deliverable is a BigQuery-backed Looker Studio dashboard or BI presentation layer: route to a dashboard or BI-specific skill such as looker-studio-bigquery when available
  • The main problem is finding the first actionable failure in logs, stack traces, or incident output: use log-analysis
  • The main task is repeated-shape, fraud, smell, or anomaly hunting rather than broad analysis: use pattern-detection
  • The blocking issue is missing instrumentation, alerts, health signals, or telemetry design: use monitoring-observability

Instructions

Step 1: Frame the analysis before touching the data

Capture the smallest useful brief:

  • source: CSV, sheet, SQL result, event export, finance table, or telemetry slice
  • decision: what question must this analysis answer
  • grain: row meaning, time bucket, entity, cohort, or segment
  • success condition: what would count as a useful answer
  • constraint: freshness, sample bias, missing columns, or tooling limits

If the real ask is a dashboard build, route it out before doing analysis work.

Step 2: Run a fast trust check on the dataset

Before deriving insights, check:

  • row count, date range, and key dimensions
  • nulls, duplicates, impossible values, and schema drift
  • join assumptions and whether totals reconcile
  • whether the metric denominator is stable
  • whether a slice is too small, too stale, or too biased to support a claim

Report trust issues early instead of burying them under charts.

Step 3: Choose the right analysis lane

Pick one primary lane:

  • dataset triage: understand shape, quality, and caveats
  • comparison: compare segments, cohorts, geos, plans, or channels
  • trend readout: explain movement over time
  • experiment readout: compare baseline versus variant with clear caveats
  • stakeholder summary: compress the findings into decisions and next actions

Prefer one dominant lane, even if you touch a second one briefly.

Step 4: Produce findings that answer the decision

For every finding:

  • state the metric or slice
  • state the comparison or trend direction
  • note confidence or data limitations
  • avoid causal claims the data cannot support
  • separate observations from recommendations

Do not dump raw tables without interpretation.

Step 5: Keep route-outs explicit

  • Route dashboard implementation, refresh strategy, and BI interaction design to a dashboard or BI-specific skill such as looker-studio-bigquery when available
  • Route raw incident, CI, or application log triage to log-analysis
  • Route anomaly-only scans, suspicious repeated shapes, or rule-hunting to pattern-detection
  • Route missing instrumentation, telemetry ownership, and alert coverage to monitoring-observability

Output format

Expected response shape:

  • Question and data source: what is being analyzed and why
  • Data trust check: row count, time range, and caveats
  • Key findings: the smallest set of findings that answer the decision
  • Evidence: the comparison, metric, or segment behind each finding
  • Limits: uncertainty, bias, or missing data that constrains the conclusion
  • Next actions: what to investigate, monitor, or decide next
  • Route-out: sibling skill if the request belongs elsewhere

Examples

Example 1: Funnel or retention export

Input:

We exported signup, activation, and D7 retention by channel for the last six
weeks. Find which channel mix actually improved activation and where the drop
is coming from.

Expected shape:

  • keeps the work on data-analysis
  • checks whether the channel definitions and date windows are comparable
  • explains the funnel and retention movement with caveats

Example 2: Dashboard request route-out

Input:

Build a BigQuery-backed Looker Studio dashboard for weekly revenue, retention,
and campaign ROI.

Expected shape:

  • recognizes the main job as dashboard presentation and refresh design
  • routes to a dashboard or BI-specific skill such as looker-studio-bigquery when available
  • does not keep data-analysis as the primary owner

Example 3: Raw log request route-out

Input:

These API logs are noisy and I need the first actionable error, not a business
report.

Expected shape:

  • recognizes this as raw log triage
  • routes to log-analysis
  • does not treat the task as a structured dataset analysis problem

Example 4: Instrumentation gap route-out

Input:

We cannot tell whether checkout is improving because we have no metrics,
dashboards, or alert thresholds yet.

Expected shape:

  • recognizes missing telemetry as the primary blocker
  • routes to monitoring-observability
  • does not keep data-analysis as the primary owner

Best practices

  1. Start with the decision, not the chart type.
  2. Check whether the denominator, join, and time window are trustworthy before comparing slices.
  3. Separate observation, inference, and recommendation.
  4. Keep route-outs explicit when the real job is dashboards, logs, anomalies, or instrumentation design.
  5. Add references and evals before any skill-autoresearch loop on this skill.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.33%
按下载量换算44

Claude

28.51%
按下载量换算34

Cursor

18.43%
按下载量换算22

Gemini CLI

8.48%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills