用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill kaggle-api-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 | kaggle-api-guide |
| description | Download datasets, manage competitions and notebooks via Kaggle API |
| metadata | {"openclaw":{"emoji":"📈","category":"tools","subcategory":"code-exec","keywords":["kaggle","datasets","competitions","notebooks","data-science","machine-learning"],"source":"https://www.kaggle.com/docs/api"}} |
Kaggle is the world's largest data science and machine learning community, hosting thousands of datasets, competitions, and computational notebooks. The Kaggle API provides programmatic access to these resources, enabling researchers to download datasets, submit competition entries, manage kernels (notebooks), and explore the Kaggle ecosystem from the command line or scripts.
For academic researchers, Kaggle is a valuable resource for accessing curated, well-documented datasets across diverse domains including healthcare, natural language processing, computer vision, economics, and social sciences. Many published research papers use Kaggle datasets as benchmarks, and the platform's competition infrastructure provides standardized evaluation frameworks for comparing methods.
The Kaggle API is available as a Python CLI tool and library. It requires a free Kaggle account and API token for authentication. The API supports dataset search and download, competition data retrieval, kernel management, and model access.
A free Kaggle API token is required. Generate one from your Kaggle account settings at https://www.kaggle.com/settings.
Download the kaggle.json credentials file and place it in the standard location:
# The kaggle.json file should be at ~/.kaggle/kaggle.json
# It contains your username and key from your Kaggle account settings
mkdir -p ~/.kaggle
# Move your downloaded kaggle.json to ~/.kaggle/kaggle.json
chmod 600 ~/.kaggle/kaggle.json
Alternatively, use environment variables:
export KAGGLE_USERNAME=$KAGGLE_USERNAME
export KAGGLE_KEY=$KAGGLE_KEY
Install the CLI tool:
pip install kaggle
Find datasets by keyword, file type, or license.
# Search for datasets
kaggle datasets list -s "climate change" --sort-by votes
# Search with specific criteria
kaggle datasets list -s "medical imaging" --file-type csv --max-size 1000000
# Download and unzip a dataset
kaggle datasets download -d "heptapod/titanic" --unzip -p ./data/titanic/
# Download a specific file from a dataset
kaggle datasets download -d "yelp-dataset/yelp-dataset" -f "yelp_academic_dataset_review.json" -p ./data/
# List active competitions
kaggle competitions list
# Download competition data (must accept rules on kaggle.com first)
kaggle competitions download -c "house-prices-advanced-regression-techniques" -p ./data/house-prices/
# Submit predictions
kaggle competitions submit -c "house-prices-advanced-regression-techniques" \
-f ./submission.csv -m "Random forest baseline v1"
# Check submission status
kaggle competitions submissions -c "house-prices-advanced-regression-techniques"
# Search for notebooks
kaggle kernels list -s "transformer nlp" --sort-by voteCount
# Pull a notebook to local
kaggle kernels pull "username/notebook-name" -p ./notebooks/
# Push a notebook to Kaggle
kaggle kernels push -p ./my-notebook/
import subprocess
import json
import os
def search_kaggle_datasets(query, sort_by="votes", max_results=10):
"""Search Kaggle datasets and return structured results."""
cmd = [
"kaggle", "datasets", "list",
"-s", query,
"--sort-by", sort_by,
"--max-size", "50000000",
"--csv"
]
result = subprocess.run(cmd, capture_output=True, text=True)
lines = result.stdout.strip().split("\n")
if len(lines) < 2:
return []
headers = lines[0].split(",")
datasets = []
for line in lines[1:max_results + 1]:
values = line.split(",")
dataset = dict(zip(headers, values))
datasets.append(dataset)
return datasets
def download_dataset(dataset_ref, output_dir="./data"):
"""Download a Kaggle dataset by reference."""
os.makedirs(output_dir, exist_ok=True)
cmd = [
"kaggle", "datasets", "download",
"-d", dataset_ref,
"--unzip",
"-p", output_dir
]
result = subprocess.run(cmd, capture_output=, text=)
result.returncode == :
()
:
()
datasets = search_kaggle_datasets()
ds datasets[:]:
()
()
()
()
from kaggle.api.kaggle_api_extended import KaggleApi
api = KaggleApi()
api.authenticate()
# Search datasets
datasets = api.dataset_list(search="genomics", sort_by="updated")
for ds in datasets[:5]:
print(f"{ds.ref}: {ds.title} ({ds.size})")
# Get dataset metadata
metadata = api.dataset_view("nih-chest-xrays/data")
print(f"Title: {metadata.title}")
print(f"Size: {metadata.totalBytes}")
print(f"Description: {metadata.description[:200]}")
# Download dataset files
api.dataset_download_files(
"nih-chest-xrays/sample",
path="./data/chest-xrays/",
unzip=True
)
Benchmark Dataset Access: Download well-established datasets used in published research for reproducibility studies. Kaggle hosts canonical versions of many benchmark datasets referenced in ML papers.
Competition as Evaluation Framework: Use Kaggle competitions as standardized evaluation environments with leaderboards and held-out test sets. Submit predictions from novel methods to compare against state-of-the-art approaches.
Data Exploration Notebooks: Search for and pull community notebooks that explore datasets relevant to your research. These often contain valuable preprocessing code, exploratory analysis, and baseline models.
Collaborative Research Datasets: Upload processed research datasets to Kaggle for sharing with collaborators and the broader community, enabling others to reproduce and extend your work.
Cross-Domain Transfer: Search across Kaggle's diverse dataset collection to find datasets from adjacent domains that could be useful for transfer learning or cross-domain validation studies.
kernel-metadata.json file specifying the kernel type, language, and datasetskaggle.json to version control; use environment variables in CI/CD pipelines