plugins marketplace
← All plugins

kaggle

v2.4.0

Independent, unofficial Kaggle.com workflow plugin: CLI, MCP, competition reports, datasets, models, notebooks, forums, writeups, submissions, and badge collection. Not affiliated with, endorsed by, or sponsored by Kaggle or Google.

CodexClaude Code1 skill

by shepsciMIT81updated 1 month ago

Source

git clone https://github.com/shepsci/kaggle-skill

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

kaggle/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── skills/kaggle/SKILL.md

Skills1

kaggleskills/kaggle/SKILL.md

Unified Kaggle skill. Use when the user explicitly mentions Kaggle, kaggle.com, a Kaggle URL, Kaggle competitions, Kaggle datasets/models/notebooks, Kaggle forums/discussions/writeups, Kaggle benchmarks, hackathons hosted on Kaggle, Kaggle badges, or Kaggle account setup. Do not use for generic ML, GPU/TPU, notebook, dataset, benchmark, or data-science tasks unless the user clearly ties them to Kaggle.

Manifests2

.codex-plugin/plugin.json
{
  "name": "kaggle",
  "version": "2.4.0",
  "description": "Independent, unofficial Kaggle.com workflow plugin: CLI, MCP, competition reports, datasets, models, notebooks, forums, writeups, submissions, and badge collection. Not affiliated with, endorsed by, or sponsored by Kaggle or Google.",
  "author": {
    "name": "shepsci",
    "url": "https://github.com/shepsci"
  },
  "homepage": "https://github.com/shepsci/kaggle-skill",
  "repository": "https://github.com/shepsci/kaggle-skill",
  "license": "MIT",
  "keywords": [
    "kaggle",
    "competitions",
    "datasets",
    "models",
    "notebooks",
    "forums",
    "writeups",
    "benchmarks",
    "machine-learning",
    "data-science"
  ],
  "skills": "./skills/",
  "mcpServers": "./.mcp.json",
  "interface": {
    "displayName": "Kaggle Skill",
    "shortDescription": "Unofficial Kaggle.com workflows: CLI, MCP, forums, writeups, and competitions",
    "longDescription": "An independent, unofficial plugin for agents that need Kaggle.com CLI workflows, MCP-backed competition and hackathon retrieval, dataset/model/notebook operations, forums and discussion topics, solution writeup discovery, benchmark task guidance, credential setup, and badge collection. Not affiliated with, endorsed by, or sponsored by Kaggle or Google.",
    "developerName": "shepsci",
    "category": "Data Science",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/shepsci/kaggle-skill",
    "privacyPolicyURL": "https://github.com/shepsci/kaggle-skill/blob/main/PRIVACY.md",
    "defaultPrompt": [
      "Set up my Kaggle credentials.",
      "Find recent Kaggle discussion writeups.",
      "Run a Kaggle competition workflow."
    ],
    "brandColor": "#20BEFF"
  }
}
.claude-plugin/plugin.json
{
  "name": "kaggle",
  "description": "Independent, unofficial Kaggle.com workflow plugin: competition reports, dataset/model downloads, notebook execution, forums, writeups, submissions, and badge collection. Not affiliated with, endorsed by, or sponsored by Kaggle or Google.",
  "version": "2.4.0",
  "author": {
    "name": "shepsci"
  },
  "homepage": "https://github.com/shepsci/kaggle-skill",
  "repository": "https://github.com/shepsci/kaggle-skill",
  "license": "MIT",
  "keywords": [
    "kaggle",
    "competitions",
    "datasets",
    "models",
    "notebooks",
    "forums",
    "hackathons",
    "writeups",
    "benchmarks",
    "machine-learning",
    "data-science"
  ],
  "skills": [
    "./skills/kaggle"
  ]
}