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

data-review数据审查

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

191

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wcygan/dotfiles --skill data-review

简介

提供多 Agent 数据平台审查系统,用于审计管道、仓库和分析基础设施的健康状况。

  • 适用于需要生成优先级报告、识别异常模式或获取可执行建议的数据环境评估场景。
  • 支持对接 Airflow DAGs、dbt 模型、Terraform 等配置文件和查询日志进行深度分析。
  • 用户需提供平台描述或配置文件路径作为输入,无需额外依赖即可运行。
  • 安装通过 GitHub 仓库实现,使用标准 npx skills add 命令即可完成部署。

SKILL.md

Data Review Skill

A multi-agent data platform review system that audits pipelines, warehouses, analytics infrastructure, and produces a prioritized health report with actionable recommendations.

Prerequisites

None required. Works with any data platform that provides:

  • Pipeline configuration files (Airflow DAGs, dbt models, etc.)
  • Query logs or analytics code
  • Infrastructure-as-code (Terraform, CloudFormation)
  • Data quality metrics or monitoring dashboards

Inputs

The user provides:

  1. Platform description (required) — Overview of the data platform architecture

- OR: Path to configuration directory (e.g., dbt/, airflow/dags/, terraform/)

  1. Key data flows (optional) — Critical pipelines to prioritize, e.g. "user events → warehouse → BI dashboards"
  2. Known pain points (optional) — Current issues, slow queries, quality problems
  3. Compliance requirements (optional) — GDPR, HIPAA, SOC2, etc.
  4. Context file (optional) — Markdown file with platform details, constraints, team size

If the user doesn't provide optional inputs, use reasonable defaults and note assumptions.

Agent Roster

Each agent has a specialized domain. All agents read the same platform artifacts in parallel.

#AgentFocusReference
1Data EngineerPipeline reliability, orchestration, dependencies, error handling, monitoringagents/data-engineer.md
2Data ScientistAnalytics quality, model pipelines, feature engineering, reproducibilityagents/data-scientist.md
3Performance AnalystQuery optimization, indexing, partitioning, compute costs, bottlenecksagents/performance-analyst.md
4Security AuditorData governance, access controls, PII handling, compliance, lineageagents/security-auditor.md
5SynthesizerReads all agent reports → produces prioritized action plan with trade-offsBuilt-in coordinator role

Workflow

Phase 1: Discovery

  1. Confirm the platform description or config path
  2. Identify platform type (dbt, Airflow, Databricks, Snowflake, custom, etc.)
  3. Scan for key artifacts:

- Pipeline definitions (DAGs, models, workflows) - Query files (SQL, notebooks) - Infrastructure code (Terraform, YAML configs) - Data quality tests or schema definitions - Monitoring/alerting configurations

  1. Build a platform inventory listing:

- Pipeline count and types - Data sources and destinations - Compute/storage components - Orchestration tools

  1. Save discovery results to workspace/discovery.md

This discovery output is shared with all review agents as context.

Phase 2: Parallel Review (Sub-agents)

Spawn agents 1-4 in parallel using the Task tool. Each agent receives:

  • The platform description and discovery file
  • Their specific agent instructions (from agents/*.md)
  • The review checklists and scoring rubric (REFERENCE.md)
  • An output file path for their findings

Each agent:

  1. Reads relevant platform artifacts (configs, code, schemas)
  2. Applies their domain-specific audit checklist
  3. Scores each dimension (1-5 scale)
  4. Documents findings with file/line references
  5. Writes prioritized recommendations to their output file

Agent output files:

  • workspace/agents/data-engineer.md
  • workspace/agents/data-scientist.md
  • workspace/agents/performance-analyst.md
  • workspace/agents/security-auditor.md

Phase 3: Architecture Debate

After all agents complete their audits, spawn a debate session:

  1. Create a debate prompt with all agent findings
  2. Agents discuss conflicting recommendations (e.g., performance vs. cost)
  3. Identify trade-offs and prioritization criteria
  4. Build consensus on critical vs. nice-to-have improvements
  5. Save debate transcript to workspace/debate.md

Phase 4: Synthesis

The coordinator (you) acts as the Synthesizer:

  1. Read all 4 agent reports and debate transcript
  2. Deduplicate overlapping findings
  3. Categorize by severity (Critical / High / Medium / Low)
  4. Rank by impact-vs-effort for small teams
  5. Produce the final health report

Phase 5: Output

Generate the final deliverable using the report template in REFERENCE.md.

Save to workspace/data-platform-health-report.md and present to the user.

Output Structure

workspace/
├── discovery.md                    # Platform inventory from Phase 1
├── agents/
│   ├── data-engineer.md
│   ├── data-scientist.md
│   ├── performance-analyst.md
│   └── security-auditor.md
├── debate.md                       # Architecture trade-offs discussion
└── data-platform-health-report.md  # Final synthesized report

Coordinator Responsibilities

  1. Run the discovery phase to build platform inventory
  2. Spawn review agents in parallel with Task tool
  3. Ensure each agent has access to the discovery file and reference materials
  4. Collect all agent reports
  5. Facilitate the architecture debate (spawn debate agents or synthesize manually)
  6. Produce the final health report with scoring and prioritized recommendations
  7. Present the report to the user with executive summary

Customization

The user can customize the review by:

  • Skipping agents: "Skip data science review, focus on infrastructure and performance"
  • Focusing on specific pipelines: "Only review the user_events ETL and downstream models"
  • Prioritizing dimensions: "I care most about compliance, less about performance"
  • Adding comparisons: "Compare our approach to industry best practices for event streaming"
  • Specifying constraints: "We're a 2-person team, recommend low-maintenance solutions only"
  • Setting compliance scope: "Audit for GDPR compliance specifically"

Adapt the agent roster and instructions accordingly.

Scoring System

Each agent rates their domain on a 1-5 scale:

  • 5 (Excellent): Industry best practices, fully automated, no issues
  • 4 (Good): Minor improvements possible, well-maintained
  • 3 (Adequate): Functional but needs attention, some technical debt
  • 2 (Poor): Significant issues, requires immediate action
  • 1 (Critical): Broken or severely compromised, blocking business value

The final report includes:

  • Overall platform health score (average across domains)
  • Per-domain scores with justification
  • Critical findings (score ≤ 2)
  • Quick wins (high impact, low effort)
  • Strategic improvements (high impact, high effort)

Common Review Scenarios

Scenario 1: New Team Inheriting a Data Platform

/data-review "Inherited a Snowflake + dbt + Airflow stack. Need to understand health and risks."

Scenario 2: Pre-Migration Assessment

/data-review "Planning to migrate from on-prem Postgres to BigQuery. Audit current state."

Scenario 3: Performance Investigation

/data-review "Dashboard queries taking 2+ minutes. Focus on query optimization and indexing."

Scenario 4: Compliance Audit

/data-review "Need HIPAA compliance audit of our analytics platform. Check PII handling and access controls."

Scenario 5: Cost Optimization

/data-review "Warehouse costs doubled this quarter. Identify waste and optimization opportunities."

Agent Invocation Pattern

# Example internal workflow
use Task tool to spawn:
  - data-engineer with discovery.md + REFERENCE.md → workspace/agents/data-engineer.md
  - data-scientist with discovery.md + REFERENCE.md → workspace/agents/data-scientist.md
  - performance-analyst with discovery.md + REFERENCE.md → workspace/agents/performance-analyst.md
  - security-auditor with discovery.md + REFERENCE.md → workspace/agents/security-auditor.md

# Wait for all agents to complete

# Spawn debate session (optional)
use Task tool to spawn debate with all agent findings

# Synthesize final report
Read all outputs + debate transcript
Apply report template from REFERENCE.md
Generate data-platform-health-report.md

References

  • REFERENCE.md — Audit checklists, scoring rubric, common issues and fixes
  • agents/data-engineer.md — Pipeline reliability and orchestration focus
  • agents/data-scientist.md — Analytics quality and reproducibility focus
  • agents/performance-analyst.md — Query optimization and cost efficiency focus
  • agents/security-auditor.md — Governance, compliance, and access control focus

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.74%
按下载量换算25

Claude

30.05%
按下载量换算23

Cursor

19.76%
按下载量换算15

Gemini CLI

9.11%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/wcygan/dotfiles --skill data-review 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills