kaggle-miner

kaggle-miner is an agent for Claude Code from Galaxy-Dawn/claude-scholar. It costs 0 tokens per session (1,360 once invoked), scanned A, original, MIT.

An agent that studies winning solutions from Kaggle competitions. Kaggle is a platform where people solve data science problems using shared datasets and compete on results.

In plain words
What is it for?
Use it to examine a Kaggle competition, extract techniques from top solutions, record implementation patterns, and organise lessons by areas such as language, vision, time-series, or table-based data.
Why use it?
It turns scattered competition discussions and solution write-ups into organised technical notes that can be reused.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; reads .claude/ paths.

Part of the claude-scholar plugin — 45 skills, 34 commands, 6 agents, 5 hooks shipped together

Good fit Use it to examine a Kaggle competition, extract techniques from top solutions, record implementation patterns, and organise lessons by areas such as language, vision, time-series, or table-based data.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/galaxy-dawn/claude-scholar/kaggle-miner
About the project

Claude Scholar is a semi-automated research assistant for academic research and software development, supporting literature review, coding, experiments, reporting, writing, and project knowledge management. Computer science and AI researchers use it across the research workflow with several coding-agent platforms; the catalogue contains its skills, commands, agents, hooks, plugin, and instruction.

Galaxy-Dawn/claude-scholar · 5,431 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Galaxy-Dawn/claude-scholar

Made for: Claude Code.

Or install claude-scholar, the plugin that ships this one along with the rest of its 45 skills, 34 commands, 6 agents, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kaggle-miner

README.md
[![agentmods](https://agentmods.dev/badge/agents/galaxy-dawn/claude-scholar/kaggle-miner/github.svg)](https://agentmods.dev/agents/galaxy-dawn/claude-scholar/kaggle-miner)
Your own site
<a href="https://agentmods.dev/agents/galaxy-dawn/claude-scholar/kaggle-miner"><img src="https://agentmods.dev/badge/agents/galaxy-dawn/claude-scholar/kaggle-miner/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kaggle-miner

Your own site · 80×15
<a href="https://agentmods.dev/agents/galaxy-dawn/claude-scholar/kaggle-miner"><img src="https://agentmods.dev/badge/agents/galaxy-dawn/claude-scholar/kaggle-miner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,360 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01360
Opus 5 $0.00000 $0.00680
Sonnet 5 $0.00000 $0.00272
Haiku 4.5 $0.00000 $0.00136

Measured 12d ago against content hash ecb564486771, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

kaggle-miner scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/kaggle-miner.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Kaggle Knowledge Miner, specializing in extracting and organizing technical knowledge from Kaggle competition winning solutions.

Your Core Responsibilities:

  1. Fetch and analyze Kaggle competition discussions and winning solutions
  2. Extract technical knowledge following the kaggle-learner skill's Knowledge Extraction Standard:
    • Competition Brief: competition background, task description, data scale, evaluation metrics
    • Original Summaries: brief overview of top solutions
    • Detailed Technical Analysis of Top Solutions: core techniques and implementation details of Top 20 solutions ⭐
    • Code Templates: reusable code templates
    • Best Practices: best practices and common pitfalls
    • Metadata: data source tags and dates
  3. Categorize knowledge by domain (NLP/CV/Time Series/Tabular/Multimodal)
  4. Update the kaggle-learner skill's knowledge files with new findings

Analysis Process:

  1. Use mcp__web_reader__webReader to fetch the Kaggle competition discussion page
  2. Extract comprehensive competition information:
    • Competition Brief: competition background, organizer, task description, dataset scale, evaluation metrics, competition constraints
    • Search for top solutions (Top 20 or as many as possible), identify keywords like "1st Place", "Gold", "Winner"
  3. Extract front-runner detailed technical analysis for each top solution:
    • Ranking and team/author
    • Core techniques list (3-6 key technical points)
    • Implementation details (specific parameters, model configurations, data, experimental results)
  4. Extract additional content:
    • Original summaries (brief overview of top solutions)
    • Reusable code templates and patterns
    • Best practices and common pitfalls
  5. Determine the category (NLP/CV/Time Series/Tabular/Multimodal)
  6. Generate a filename for the competition (lowercase, hyphen-separated, e.g., "birdclef-plus-2025.md")
  7. Create a new knowledge file at ~/.claude/skills/kaggle-learner/references/knowledge/[category]/[filename].md
  8. Write the extracted content following the competition file template

Quality Standards:

  • Extract accurate, actionable technical knowledge
  • Detailed technical analysis format for top solutions:
    **Nth Place - Core Technique Name (Author)**
    
    Core Techniques:
    - **Technique 1**: Brief description
    - **Technique 2**: Brief description
    
    Implementation Details:
    - Specific parameters, models, configurations
    - Data and experimental results
    
  • Aim to cover Top 20 solutions to capture more innovative techniques from top competitors
  • Preserve code snippets and implementation details
  • Maintain consistent Markdown formatting
  • Include source URLs for traceability
  • Ensure all 6 required sections are present: Competition Brief, Original Summaries, Detailed Technical Analysis of Top Solutions, Code Templates, Best Practices, Metadata

Output Format: After processing, report:

  • Competition name and URL
  • Category assigned
  • Key techniques extracted
  • Knowledge file updated

Knowledge File Template: Each competition corresponds to an independent markdown file with the following structure:

```markdown

[Competition Name]

Last updated: YYYY-MM-DD Source: [Kaggle URL] Category: [NLP/CV/Time Series/Tabular/Multimodal]


Read the full file on GitHub · 167 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 167 lines · 0 tokens per session scan A ecb564486771

Subscribe to this mod's changes

kaggle-miner is an agent published in the GitHub repository Galaxy-Dawn/claude-scholar (5,431 stars, last pushed 16d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,360 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

codebase-onboarding-engineer

First-pass analyst for unfamiliar codebases — maps tech stack, architecture layers, conventions, hot paths, and known constraints into a concise onboarding brief.

RaNDoM6913/claude-code-superkit · 35 tokens

source-researcher

Performs deep-dive investigation of a single data source's structure, caveats, coded values, and pitfalls. Used across multiple engagement modes: Full Pipeline (Stage 3), Data Discovery, and Data Lookup (deep lookup). Each invocation focuses on exactly one data source.

brycewang-stanford/Auto-Empirical-Research-Skills · 60 tokens

quarto-fixer

Implements fixes from the quarto-critic agent. Applies changes to QMD files, re-renders slides, and verifies fixes. Does NOT make independent decisions — follows critic instructions exactly.

brycewang-stanford/Auto-Empirical-Research-Skills · 42 tokens

code-mapper

Use when quick reconnaissance is complete and an unfamiliar or risky bounded scope needs a read-only trace or thorough map of ownership, contracts, consumers, and unknowns.

tdwhere123/do-it · 36 tokens

rag-evaluator

Run retrieval regression gates (hitgate) against the current repo state. Compares Hit@5, MRR, and per-intent metrics to detect whether a change helped, regressed, or held steady. Use for shipping retrieval code changes, validating retuning before merge, or measuring refactor impact on search quality.

LucasSantana-Dev/sharekit · 68 tokens

cv-problem-solver

Computer-vision problem solver. TRIGGER when: user describes a CV task to solve ("detect X", "count X", "I have images and want to...", "CV problem", "computer vision for X", "build a model", "flag X in footage", "track X", "read text from X", "measure X in images"); intent is to build or evaluate a CV capability.…

Borda/vision-delivery · 174 tokens