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

data-cog数据齿轮

Agent Skill

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

总安装

73,073

周安装

2,985

GitHub Stars

4

下载量

23,641
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install data-cog

简介

Data-Cog 由 CellCog 支持,提供数据分析和可视化能力。

  • 适用于清理、探索性分析和统计报告生成。data-cog 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持 ML 模型评估和假设检验,提升分析深度。
  • 安装命令:openclaw skills install data-cog;建议确认计算资源限制。
  • 注意涉及大规模数据时需评估性能和内存消耗。

SKILL.md

name
data-cog
description
AI data analysis and visualization powered by CellCog. Data cleaning, exploratory analysis, hypothesis testing, statistical reports, ML model evaluation, dataset profiling, charts, dashboards. Upload CSVs and get analysis back with full Python access.
metadata
openclaw
emoji
🔢
os
[darwin, linux, windows]
requires
bins
[python3]
env
[CELLCOG_API_KEY]
author
CellCog
homepage
https://cellcog.ai
dependencies
[cellcog]

Data Cog - Your Data Has Answers, CellCog Finds Them

Data analysis and visualization from uploaded files.

Most AI tools return code when you ask about data. CellCog returns answers — actual charts, clean datasets, statistical reports, and visual dashboards. Upload messy CSVs with a minimal prompt, and CellCog's coding agent explores your data, finds the patterns, and presents them beautifully. Full Python access for everything from data cleaning to ML model evaluation.

How to Use

For your first CellCog task in a session, read the cellcog skill for the full SDK reference — file handling, chat modes, timeouts, and more.

OpenClaw (fire-and-forget):

result = client.create_chat(
    prompt="[your task prompt]",
    notify_session_key="agent:main:main",
    task_label="my-task",
    chat_mode="agent",
)

All agents except OpenClaw (blocks until done):

from cellcog import CellCogClient
client = CellCogClient(agent_provider="openclaw|cursor|claude-code|codex|...")
result = client.create_chat(
    prompt="[your task prompt]",
    task_label="my-task",
    chat_mode="agent",
)
print(result["message"])

What Makes Data-Cog Different

Code as Tool, Not as Output

Other AI tools give you Python code and say "run this." CellCog runs the code for you and delivers the results:

Other AI ToolsData-Cog
"Here's a pandas script to analyze your data"Here are your actual insights with charts
"Run this matplotlib code to see the chart"Here's the chart, annotated with findings
"This SQL query will find outliers"Found 23 outliers, here's what they mean
"You'll need scikit-learn for this"Model trained, here's accuracy and feature importance

You upload data. You get answers. The code runs behind the scenes.


What Data Work You Can Do

Exploratory Data Analysis

Understand your data fast:

  • Dataset Profiling: "Analyze this CSV — distributions, missing values, outliers, correlations, and data quality summary"
  • Pattern Discovery: "What patterns and trends exist in this sales data? Surprise me."
  • Anomaly Detection: "Find unusual patterns in this server log data — what looks abnormal?"
  • Relationship Analysis: "What factors most strongly correlate with customer churn in this dataset?"

Example prompt:

"Analyze this dataset: <SHOW_FILE>/path/to/customer_data.csv</SHOW_FILE> I don't know much about this data yet. Give me: - Overview: rows, columns, data types, missing values - Key distributions and summary statistics - Most interesting correlations - Any outliers or data quality issues - 3-5 insights that jump out Present findings as an interactive HTML report with charts."

Data Cleaning & Transformation

Wrangle messy data into shape:

  • Clean Messy Data: "Clean this CSV — fix inconsistent date formats, handle missing values, remove duplicates, standardize column names"
  • Data Transformation: "Pivot this transaction data into a monthly summary by product category"
  • Data Merging: "Join these three CSV files on customer_id and create a unified dataset"
  • Feature Engineering: "Create useful features from this raw data for predicting house prices"

Example prompt:

"Clean and transform this dataset: <SHOW_FILE>/path/to/messy_data.csv</SHOW_FILE> Issues I know about: - Dates are in mixed formats (MM/DD/YYYY and YYYY-MM-DD) - 'Revenue' column has some values with $ signs and commas - Duplicate rows exist - Missing values in 'Region' column Clean it up and give me back a clean CSV plus a summary of what you changed."

Statistical Analysis

Rigorous analysis with real numbers:

  • Hypothesis Testing: "Is there a statistically significant difference in conversion rates between our A and B variants?"
  • Regression Analysis: "What factors predict employee salary in this HR dataset? Build a regression model."
  • Time Series Analysis: "Analyze this monthly revenue data — trend, seasonality, and forecast next 6 months"
  • Cohort Analysis: "Create a cohort analysis showing user retention by signup month"

Example prompt:

"I ran an A/B test on our checkout page: <SHOW_FILE>/path/to/ab_test_results.csv</SHOW_FILE> Columns: user_id, variant (A or B), converted (0/1), revenue, timestamp Tell me: - Is variant B statistically better? (p-value, confidence interval) - Conversion rate difference - Revenue per user difference - Sample size adequacy check - My recommendation: ship B or keep testing? Present with clear charts and a plain-English conclusion."

Visualization & Reporting

Turn data into visual stories:

  • Chart Generation: "Create a set of charts showing our quarterly performance from this data"
  • Dashboard Reports: "Build an interactive dashboard from this sales dataset with filters by region and product"
  • Presentation-Ready Visuals: "Create publication-quality charts from this research data"
  • Comparison Visuals: "Visualize how our metrics compare to industry benchmarks"

Machine Learning

Applied ML without the setup:

  • Classification: "Predict which customers will churn based on this dataset — train a model, show feature importance"
  • Clustering: "Segment these customers into groups based on behavior — how many natural clusters exist?"
  • Forecasting: "Forecast next quarter's sales using this historical data"
  • Model Evaluation: "I trained a model — here are the predictions. Evaluate: accuracy, precision, recall, confusion matrix, ROC curve"

Example prompt:

"Predict customer churn from this dataset: <SHOW_FILE>/path/to/customer_features.csv</SHOW_FILE> Target column: 'churned' - Train a model, try at least 2 algorithms - Show feature importance — what drives churn? - Confusion matrix and ROC curve - Plain-English summary: 'The top 3 reasons customers churn are...' - Actionable recommendations based on findings I want insights, not just metrics."

Supported Data Formats

FormatHow to Send
CSVUpload via SHOW_FILE
Excel (XLSX)Upload via SHOW_FILE
JSONUpload via SHOW_FILE
ParquetUpload via SHOW_FILE
SQL exportsUpload the dump via SHOW_FILE
Inline dataDescribe small datasets directly in prompt

Output Formats

FormatBest For
Interactive HTML DashboardExplorable charts, filters, drill-downs
PDF ReportShareable analysis reports with charts and findings
Clean CSV/XLSXCleaned or transformed data files for downstream use
MarkdownQuick insights for integration into docs

Chat Mode for Data

ScenarioRecommended Mode
Quick data cleaning, simple charts, basic statistics"agent"
Deep analysis with multiple techniques, ML modeling, comprehensive reports"agent team"

Use "agent" for most data work. Data cleaning, EDA, chart generation, and standard statistical analysis execute well in agent mode.

Use "agent team" for complex analytical projects — multi-technique analysis, ML model comparisons, or when you need deep domain reasoning about what the data means.


Example Prompts

Minimal prompt, maximum insight:

"Analyze this: <SHOW_FILE>/path/to/data.csv</SHOW_FILE> Tell me everything interesting."

That's it. CellCog's coding agent will profile the data, run exploratory analysis, find patterns, and present findings with charts. You don't need to know what to ask — the agent figures it out.

Business analysis:

"Analyze our e-commerce data: <SHOW_FILE>/path/to/orders.csv</SHOW_FILE> I need: - Revenue trends (daily, weekly, monthly) - Best and worst performing products - Customer purchase frequency distribution - Average order value trends - Seasonal patterns - Top 5 actionable insights for growing revenue Interactive HTML dashboard with all charts."

Research data analysis:

"Analyze this survey data from 500 respondents: <SHOW_FILE>/path/to/survey.csv</SHOW_FILE> Research questions: 1. Is there a significant relationship between age group and product preference? 2. Do satisfaction scores differ by region? (ANOVA) 3. What factors best predict likelihood to recommend? (regression) Include: statistical tests, p-values, effect sizes, and publication-ready charts. PDF report format."

Tips for Better Data Analysis

  1. Just upload and ask: You don't need to describe every column. CellCog reads the data and figures out what's there.
  1. State your question: "What drives churn?" is more focused than "Analyze this data." Both work, but the first gets faster results.
  1. Mention the audience: "For my CEO" means executive summary. "For the data team" means show the methodology.
  1. Specify what you'll do with it: "I need to present this to the board" vs "I need clean data for my ML pipeline" — context shapes the output.
  1. Don't over-specify methods: Let CellCog choose the right statistical approach. Say what you want to *learn*, not which algorithm to use.
  1. Iterate: Upload data → get initial analysis → ask follow-up questions → go deeper. CellCog maintains context across messages.

If CellCog is not installed

Run /cellcog-setup (or /cellcog:cellcog-setup depending on your tool) to install and authenticate. OpenClaw users: Run clawhub install cellcog instead. Manual setup: pip install -U cellcog and set CELLCOG_API_KEY. See the cellcog skill for SDK reference.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.6%
按下载量换算20,237

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills