用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill data-cog-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | data-cog-guide |
| description | Upload messy CSVs with minimal prompting for deep automated analysis |
| metadata | {"openclaw":{"emoji":"🧠","category":"analysis","subcategory":"wrangling","keywords":["automated analysis","data wrangling","CSV upload","data profiling","smart analysis","minimal prompting"],"source":"wentor-research-plugins"}} |
An intelligent data analysis assistant that accepts messy, poorly documented CSV files and automatically infers structure, cleans anomalies, and produces deep analytical reports with minimal user prompting. Designed for researchers who need quick insights from unfamiliar or inherited datasets without spending hours on manual data preparation.
Researchers frequently receive datasets from collaborators, public repositories, or legacy systems that lack documentation, use inconsistent formatting, and contain mixed data quality. Traditional analysis requires significant upfront effort to understand and prepare such data. Data Cog automates this process by applying heuristic inference, pattern recognition, and iterative cleaning to produce analysis-ready data along with a comprehensive profile report.
The skill implements a "zero-configuration" philosophy: provide the CSV file path and an optional research question, and it handles encoding detection, delimiter inference, type casting, missingness assessment, and initial exploratory statistics automatically.
import pandas as pd
import chardet
import io
def smart_load_csv(filepath: str) -> tuple:
"""
Intelligently load a CSV file, auto-detecting encoding,
delimiter, header row, and comment lines.
"""
# Step 1: Detect encoding
with open(filepath, 'rb') as f:
raw = f.read(100000)
encoding = chardet.detect(raw)['encoding']
# Step 2: Detect delimiter
import csv
with open(filepath, 'r', encoding=encoding, errors='replace') as f:
sample = f.read(8192)
sniffer = csv.Sniffer()
try:
dialect = sniffer.sniff(sample)
delimiter = dialect.delimiter
except csv.Error:
delimiter = ','
# Step 3: Detect header row (skip comment lines)
skip_rows = 0
with open(filepath, 'r', encoding=encoding, errors='replace') as f:
for line in f:
if line.startswith('#') or line.startswith('//') or line.strip() == '':
skip_rows += 1
else:
break
# Step 4: Load with inferred parameters
df = pd.read_csv(
filepath, encoding=encoding, delimiter=delimiter,
skiprows=skip_rows, low_memory=False
)
metadata = {
'encoding': encoding,
'delimiter': repr(delimiter),
'skipped_rows': skip_rows,
'shape': df.shape
}
return df, metadata
def auto_cast_columns(df: pd.DataFrame) -> pd.DataFrame:
"""
Automatically cast columns to their most appropriate types.
Handles dates, numerics stored as strings, booleans, and categories.
"""
for col in df.columns:
# Try numeric conversion
numeric = pd.to_numeric(df[col], errors='coerce')
if numeric.notna().mean() > 0.85:
df[col] = numeric
continue
# Try datetime conversion
datetime = pd.to_datetime(df[col], errors='coerce', infer_datetime_format=True)
if datetime.notna().mean() > 0.85:
df[col] = datetime
continue
# Try boolean detection
unique_lower = df[col].dropna().astype(str).str.lower().unique()
if set(unique_lower).issubset({'true', 'false', 'yes', 'no', '1', '0', 'y', 'n'}):
df[col] = df[col].astype(str).str.lower().map(
{'true': True, 'false': False, 'yes': True, 'no': False,
'1': True, '0': False, : , : }
)
df[col].nunique() / (df) < df[col].nunique() < :
df[col] = df[col].astype()
df
The profiling stage produces a structured report covering:
| Metric | Numeric Columns | Categorical Columns |
|---|---|---|
| Central tendency | Mean, median, mode | Mode, frequency |
| Dispersion | Std, IQR, range, CV | Unique count, entropy |
| Shape | Skewness, kurtosis | Imbalance ratio |
| Quality | Missing %, zero %, outlier % | Missing %, rare labels % |
The recommended workflow requires only three inputs:
User: Analyze /data/survey_results_2025.csv
Question: What factors predict participant satisfaction?
Output: full_report
Data Cog will:
1. Load and profile the dataset (auto-detect everything)
2. Clean and transform (handle missing data, encode categoricals)
3. Run correlation analysis focused on satisfaction-related columns
4. Generate regression models predicting satisfaction
5. Produce a structured report with findings and visualizations
After the initial automated analysis, you can refine by asking targeted follow-up questions: